diff options
Diffstat (limited to 'engine/battle')
-rw-r--r-- | engine/battle/effect_commands.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/effect_commands.asm b/engine/battle/effect_commands.asm index 361eb06d..0bbaae20 100644 --- a/engine/battle/effect_commands.asm +++ b/engine/battle/effect_commands.asm @@ -4837,7 +4837,7 @@ CalcPlayerStats: ld de, wPlayerStats ld bc, wBattleMonAttack - ld a, 5 + ld a, NUM_BATTLE_STATS call CalcBattleStats ld hl, BadgeStatBoosts @@ -4858,7 +4858,7 @@ CalcEnemyStats: ld de, wEnemyStats ld bc, wEnemyMonAttack - ld a, 5 + ld a, NUM_BATTLE_STATS call CalcBattleStats call BattleCommand_SwitchTurn |