diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-04-08 17:11:05 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-04-08 17:11:05 -0400 |
commit | d0491ecb6ecd1206f8ad9e82a8a265a73e4c0811 (patch) | |
tree | 2993d5765d88df75108b3aa0050cffff1d2d6b44 /engine | |
parent | fa8f30723e16e3454adc72a0bee9b524f5636fe8 (diff) |
Diffstat (limited to 'engine')
-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 |