diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-10-16 17:07:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 17:07:54 -0500 |
commit | 832947f329b71a9a1d4b88f8b24ef85b540b4fc5 (patch) | |
tree | 5ee2e5968b07486fc0ac2bbc98affefb026a19de /src/battle_script_commands.c | |
parent | ed1bb3030bae8b0d00a1fbb68ebd50f6376938ac (diff) | |
parent | 1f358fbb07d7476822dfd49e2647ebb62428a8ed (diff) |
Merge pull request #363 from DizzyEggg/patch-1
Use constants
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 685f0db7a..781922f5b 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -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 |