mirror of https://github.com/pret/pokecrystal.git
Use NUM_BATTLE_STATS instead of raw numbers
This commit is contained in:
parent
1d97d41ea2
commit
b06cfe78fd
|
@ -4878,7 +4878,7 @@ CalcPlayerStats:
|
|||
ld de, wPlayerStats
|
||||
ld bc, wBattleMonAttack
|
||||
|
||||
ld a, 5
|
||||
ld a, NUM_BATTLE_STATS
|
||||
call CalcBattleStats
|
||||
|
||||
ld hl, BadgeStatBoosts
|
||||
|
@ -4899,7 +4899,7 @@ CalcEnemyStats:
|
|||
ld de, wEnemyStats
|
||||
ld bc, wEnemyMonAttack
|
||||
|
||||
ld a, 5
|
||||
ld a, NUM_BATTLE_STATS
|
||||
call CalcBattleStats
|
||||
|
||||
call BattleCommand_SwitchTurn
|
||||
|
|
Loading…
Reference in New Issue