diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 18:49:25 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 18:49:25 +0100 |
commit | d7970f749ac23786728926109be430ab732f19e6 (patch) | |
tree | c891c44bc9ff9a6aeb07a6677a96b0f1e9c9cb68 /engine/battle/effect_commands | |
parent | b4a49351c18dcef7f4493670058ad2833206f016 (diff) |
Consistent predef function names
Diffstat (limited to 'engine/battle/effect_commands')
-rwxr-xr-x | engine/battle/effect_commands/attract.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/effect_commands/attract.asm b/engine/battle/effect_commands/attract.asm index 0a6d7c975..fc73d234c 100755 --- a/engine/battle/effect_commands/attract.asm +++ b/engine/battle/effect_commands/attract.asm @@ -35,7 +35,7 @@ CheckOppositeGender: ; 377f5 xor a ld [MonType], a - farcall GetGender + farcall Predef_GetGender jr c, .genderless_samegender ld b, 1 @@ -58,7 +58,7 @@ CheckOppositeGender: ; 377f5 ld [TempMonDVs + 1], a ld a, 3 ld [MonType], a - farcall GetGender + farcall Predef_GetGender pop bc jr c, .genderless_samegender |