mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 03:57:38 +01:00
another fix
This commit is contained in:
parent
44fae5a688
commit
d6589d1abc
@ -2721,7 +2721,9 @@ void DisplayPartyPokemonGender(u8 gender, u16 species, u8 *nickname, struct Stru
|
||||
{
|
||||
u8 palNum = GetWindowAttribute(ptr->windowId, WINDOW_PALETTE_NUM) * 16;
|
||||
|
||||
if (species == SPECIES_NONE || ((species == SPECIES_NIDORAN_M || species == SPECIES_NIDORAN_F) && StringCompare(nickname, gSpeciesNames[species]) == 0))
|
||||
if (species == SPECIES_NONE)
|
||||
return;
|
||||
if ((species == SPECIES_NIDORAN_M || species == SPECIES_NIDORAN_F) && StringCompare(nickname, gSpeciesNames[species]) == 0)
|
||||
return;
|
||||
switch (gender)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user