Added metatile behaviors to mart and center signs
This commit is contained in:
parent
c6f89d1996
commit
2a5f384e66
3 changed files with 4 additions and 4 deletions
Binary file not shown.
|
@ -32,8 +32,8 @@
|
||||||
#define MB_SHOAL_CAVE_ENTRANCE 0x1C
|
#define MB_SHOAL_CAVE_ENTRANCE 0x1C
|
||||||
#if OW_AUTO_SIGNPOST == TRUE
|
#if OW_AUTO_SIGNPOST == TRUE
|
||||||
#define MB_SIGNPOST 0x1D
|
#define MB_SIGNPOST 0x1D
|
||||||
#define MB_SIGNPOST_POKECENTER 0x1E
|
#define MB_POKEMON_CENTER_SIGN 0x1E
|
||||||
#define MB_SIGNPOST_POKEMART 0x1F
|
#define MB_POKEMART_SIGN 0x1F
|
||||||
#else
|
#else
|
||||||
#define MB_UNUSED_1D 0x1D
|
#define MB_UNUSED_1D 0x1D
|
||||||
#define MB_UNUSED_1E 0x1E
|
#define MB_UNUSED_1E 0x1E
|
||||||
|
|
|
@ -1416,7 +1416,7 @@ bool8 MetatileBehavior_IsSignpost(u8 mb)
|
||||||
bool8 MetatileBehavior_IsPokemonCenterSign(u8 mb)
|
bool8 MetatileBehavior_IsPokemonCenterSign(u8 mb)
|
||||||
{
|
{
|
||||||
#if OW_AUTO_SIGNPOST == TRUE
|
#if OW_AUTO_SIGNPOST == TRUE
|
||||||
return (mb == MB_SIGNPOST_POKECENTER);
|
return (mb == MB_POKEMON_CENTER_SIGN);
|
||||||
#else
|
#else
|
||||||
return FALSE;
|
return FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1425,7 +1425,7 @@ bool8 MetatileBehavior_IsPokemonCenterSign(u8 mb)
|
||||||
bool8 MetatileBehavior_IsPokeMartSign(u8 mb)
|
bool8 MetatileBehavior_IsPokeMartSign(u8 mb)
|
||||||
{
|
{
|
||||||
#if OW_AUTO_SIGNPOST == TRUE
|
#if OW_AUTO_SIGNPOST == TRUE
|
||||||
return (mb == MB_SIGNPOST_POKEMART);
|
return (mb == MB_POKEMART_SIGN);
|
||||||
#else
|
#else
|
||||||
return FALSE;
|
return FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue