diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-14 16:28:16 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-14 16:28:16 -0500 |
commit | c5d482df208bab0fe340de175b21137f56008287 (patch) | |
tree | e3adfb838df630100d0d80ef02d3804d7add0d02 /battle | |
parent | b17db9b8b5939d41dbe7d35d2f5c54cf82e0c59d (diff) |
Document two more bugs found by Crystal_
Diffstat (limited to 'battle')
-rw-r--r-- | battle/effect_commands.asm | 2 | ||||
-rw-r--r-- | battle/moves/move_effects.asm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/battle/effect_commands.asm b/battle/effect_commands.asm index e261cbe81..b49cb2e3d 100644 --- a/battle/effect_commands.asm +++ b/battle/effect_commands.asm @@ -3191,6 +3191,8 @@ BattleCommand_BeatUp: ; 35461 ld a, [wd002] ld c, a ld a, [CurBattleMon] + ; BUG: this can desynchronize link battles + ; Change "cp [hl]" to "cp c" to fix cp [hl] ld hl, BattleMonStatus jr z, .active_mon diff --git a/battle/moves/move_effects.asm b/battle/moves/move_effects.asm index 73bc3cbec..c34e5ed23 100644 --- a/battle/moves/move_effects.asm +++ b/battle/moves/move_effects.asm @@ -571,7 +571,7 @@ DefenseDownHit: supereffectivetext checkdestinybond buildopponentrage - effectchance + effectchance ; bug: duplicate effectchance shouldn't be here defensedown statdownmessage endmove |