shithub: pokecrystal

Download patch

ref: fb2a95afedc6d559614675b9e0763301cbd56072
parent: 7d40476e14542163830cfb60d4b84787d1123797
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Tue Sep 7 15:18:22 EDT 2021

`and 50 percent` -> `and %011111111`

--- a/engine/phone/phone.asm
+++ b/engine/phone/phone.asm
@@ -116,9 +116,10 @@
 	nop
 	jr nc, .no_call
 
+	; 50% chance for a call
 	call Random
 	ld b, a
-	and 50 percent
+	and %01111111
 	cp b
 	jr nz, .no_call