diff options
Diffstat (limited to 'src/rom4.c')
-rw-r--r-- | src/rom4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rom4.c b/src/rom4.c index 455e6bfa7..fe5b7cb45 100644 --- a/src/rom4.c +++ b/src/rom4.c @@ -667,15 +667,15 @@ bool32 IsBikingAllowedByMap(void) return FALSE; if (gMapHeader.mapType == MAP_TYPE_UNDERWATER) return FALSE; - + // is player in SeafloorCavern_Room9? if (gSaveBlock1.location.mapGroup == 24 && gSaveBlock1.location.mapNum == 36) return FALSE; - + // is player in CaveOfOrigin_B4F? if (gSaveBlock1.location.mapGroup == 24 && gSaveBlock1.location.mapNum == 42) return FALSE; - + return TRUE; } |