diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-11-09 03:13:09 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-11-09 03:13:09 -0500 |
commit | eecafbaec17ba0721d091d1a12ac20fa71da352a (patch) | |
tree | 78bcb6288c0d59beeb818b5f5d3496bf853ffb79 /src/battle/battle_3.c | |
parent | 5dd8964999ef207e84c41c834b596dbc31e10474 (diff) |
depreciate use of shared_syms
Diffstat (limited to 'src/battle/battle_3.c')
-rw-r--r-- | src/battle/battle_3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/battle/battle_3.c b/src/battle/battle_3.c index 1d6784297..f37111af5 100644 --- a/src/battle/battle_3.c +++ b/src/battle/battle_3.c @@ -1718,14 +1718,14 @@ u8 AbilityBattleEffects(u8 caseID, u8 bank, u8 ability, u8 special, u16 moveArg) case ABILITY_FLASH_FIRE: if (moveType == TYPE_FIRE && !(gBattleMons[bank].status1 & STATUS_FREEZE)) { - if (!(ewram17100.arr[bank] & 1)) + if (!(eFlashFireArr.arr[bank] & 1)) { gBattleCommunication[MULTISTRING_CHOOSER] = 0; if (gProtectStructs[gBankAttacker].notFirstStrike) gBattlescriptCurrInstr = BattleScript_FlashFireBoost; else gBattlescriptCurrInstr = BattleScript_FlashFireBoost_PPLoss; - ewram17100.arr[bank] |= 1; + eFlashFireArr.arr[bank] |= 1; effect = 2; } else |