diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-22 01:32:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 01:32:16 -0400 |
commit | e874dfcbc8968f46f7c7f105b76c7d53698f24a6 (patch) | |
tree | eeeab4a3b305a08e4c977327d6eb4d1587b37a9a /src/battle_script_commands.c | |
parent | 8dd6af1db1242c98147192a6cb02301d871dfffc (diff) | |
parent | 342ebbf406ca9623bc53ac00317835237099ce35 (diff) |
Merge pull request #1408 from GriffinRichards/doc-pokemonstorage
Document Pokémon Storage System
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 33c6ce0e5..0492caeb5 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -6045,7 +6045,7 @@ static void PutLevelAndGenderOnLvlUpBox(void) var = (u32)(txtPtr); txtPtr = ConvertIntToDecimalStringN(txtPtr, monLevel, STR_CONV_MODE_LEFT_ALIGN, 3); var = (u32)(txtPtr) - var; - txtPtr = StringFill(txtPtr, CHAR_UNK_SPACER, 4 - var); + txtPtr = StringFill(txtPtr, CHAR_GENDERLESS, 4 - var); if (monGender != MON_GENDERLESS) { |