diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-10 23:13:27 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-04-28 19:59:08 -0500 |
commit | b1d26e10a829a2a1526754b88167485df7e2511f (patch) | |
tree | c7bc3138a1f0a131a713457e4905ebc71c10b677 /src/bike.c | |
parent | 724ffe14ee2be59a34dc6a397f6579cc0d820cff (diff) |
Sync map header property names with pokefirered
Diffstat (limited to 'src/bike.c')
-rw-r--r-- | src/bike.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bike.c b/src/bike.c index e66d6b6e1..cd24d2487 100644 --- a/src/bike.c +++ b/src/bike.c @@ -1056,7 +1056,7 @@ void Bike_HandleBumpySlopeJump(void) bool32 IsRunningDisallowed(u8 metatile) { - if (!(gMapHeader.flags & MAP_ALLOW_RUN) || IsRunningDisallowedByMetatile(metatile) == TRUE) + if (!(gMapHeader.flags & MAP_ALLOW_RUNNING) || IsRunningDisallowedByMetatile(metatile) == TRUE) return TRUE; else return FALSE; |