diff options
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 |