Changed mb to MetatileBehavior per https://github.com/rh-hideout/pokeemerald-expansion/pull/5044\#discussion_r1694003941
This commit is contained in:
parent
5bb1730394
commit
1ac4d195c2
@ -1404,17 +1404,17 @@ bool8 MetatileBehavior_IsTrainerHillTimer(u8 metatileBehavior)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
bool32 MetatileBehavior_IsSignpost(u32 mb)
|
||||
bool32 MetatileBehavior_IsSignpost(u32 metatileBehavior)
|
||||
{
|
||||
return (mb == MB_SIGNPOST);
|
||||
return (metatileBehavior == MB_SIGNPOST);
|
||||
}
|
||||
|
||||
bool32 MetatileBehavior_IsPokemonCenterSign(u32 mb)
|
||||
bool32 MetatileBehavior_IsPokemonCenterSign(u32 metatileBehavior)
|
||||
{
|
||||
return (mb == MB_POKEMON_CENTER_SIGN);
|
||||
return (metatileBehavior == MB_POKEMON_CENTER_SIGN);
|
||||
}
|
||||
|
||||
bool32 MetatileBehavior_IsPokeMartSign(u32 mb)
|
||||
bool32 MetatileBehavior_IsPokeMartSign(u32 metatileBehavior)
|
||||
{
|
||||
return (mb == MB_POKEMART_SIGN);
|
||||
return (metatileBehavior == MB_POKEMART_SIGN);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user