From 4e3c2d84911614cfa917e2fa5d0fe1511fa5e41b Mon Sep 17 00:00:00 2001 From: Ariel Antonitis Date: Mon, 15 Jun 2020 11:49:07 -0400 Subject: [PATCH] Allowed running inside buildings. --- src/bike.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bike.c b/src/bike.c index bbcda989c9..c66a6b5f07 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_RUNNING) || IsRunningDisallowedByMetatile(metatile) == TRUE) + if (IsRunningDisallowedByMetatile(metatile) == TRUE) return TRUE; else return FALSE;