Use constants
This commit is contained in:
parent
ed1bb3030b
commit
1f358fbb07
1 changed files with 3 additions and 3 deletions
|
@ -3382,17 +3382,17 @@ static void atk23_getexp(void)
|
|||
// check if the pokemon doesn't belong to the player
|
||||
if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER && gBattleStruct->expGetterMonId >= 3)
|
||||
{
|
||||
i = 0x149;
|
||||
i = STRINGID_EMPTYSTRING4;
|
||||
}
|
||||
else
|
||||
{
|
||||
gBattleMoveDamage = (gBattleMoveDamage * 150) / 100;
|
||||
i = 0x14A;
|
||||
i = STRINGID_ABOOSTED;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
i = 0x149;
|
||||
i = STRINGID_EMPTYSTRING4;
|
||||
}
|
||||
|
||||
// get exp getter battlerId
|
||||
|
|
Loading…
Reference in a new issue