This commit is contained in:
pkmnsnfrn 2024-07-27 07:34:33 -07:00
parent 587ffeeb97
commit 31fc49734a

View File

@ -1408,28 +1408,17 @@ bool8 MetatileBehavior_IsTrainerHillTimer(u8 metatileBehavior)
bool32 MetatileBehavior_IsSignpost(u32 mb)
{
#if OW_AUTO_SIGNPOST == TRUE
return (mb == MB_SIGNPOST);
#else
return FALSE;
#endif
}
bool32 MetatileBehavior_IsPokemonCenterSign(u32 mb)
{
#if OW_AUTO_SIGNPOST == TRUE
return (mb == MB_POKEMON_CENTER_SIGN);
#else
return FALSE;
#endif
}
bool32 MetatileBehavior_IsPokeMartSign(u32 mb)
{
#if OW_AUTO_SIGNPOST == TRUE
return (mb == MB_POKEMART_SIGN);
#else
return FALSE;
#endif
}