diff options
author | yenatch <yenatch@gmail.com> | 2013-04-29 15:08:13 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-04-29 15:11:48 -0400 |
commit | f2185cd0e4ef38a84fd8b49104843b8e84f37aba (patch) | |
tree | f20f2584c0ac5024f6043ec243f6fb652c968333 /battle/effect_commands.asm | |
parent | 652d26bb053dc9974c0d8fbbe88d7258f5815757 (diff) |
BaseStats is now BaseData
Diffstat (limited to 'battle/effect_commands.asm')
-rw-r--r-- | battle/effect_commands.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/battle/effect_commands.asm b/battle/effect_commands.asm index c6b0c1c7a..0e77dd2ad 100644 --- a/battle/effect_commands.asm +++ b/battle/effect_commands.asm @@ -2020,7 +2020,7 @@ Function0x34a2a: ; 34a2a ld a, [hl] ld [CurSpecies], a - call GetBaseStats + call GetBaseData ld a, [LastEnemyCounterMove] dec a ld hl, $5afd @@ -2200,7 +2200,7 @@ Function0x34b20: ; 34b20 push hl ld [CurSpecies], a - call GetBaseStats + call GetBaseData ld a, [LastEnemyCounterMove] and a jr z, .asm_34b4a @@ -3929,7 +3929,7 @@ BattleCommanda1: ; 35461 call FarBattleTextBox ld a, [BattleMonSpecies] ld [CurSpecies], a - call GetBaseStats + call GetBaseData ld a, [$d239] ld c, a push bc @@ -3937,7 +3937,7 @@ BattleCommanda1: ; 35461 call Function0x355bd ld a, [hl] ld [CurSpecies], a - call GetBaseStats + call GetBaseData ld a, [$d238] pop bc ld b, a |