Updated with current codebase

Eduardo Quezada D'Ottone 2022-02-18 18:08:42 -03:00
parent bac19a1c81
commit d74e8e3e5d
1 changed files with 1 additions and 1 deletions

@ -8,7 +8,7 @@ Edit [src/bike.c](../blob/master/src/bike.c):
```diff ```diff
bool32 IsRunningDisallowed(u8 metatile) bool32 IsRunningDisallowed(u8 metatile)
{ {
- if (!(gMapHeader.flags & MAP_ALLOW_RUNNING) || IsRunningDisallowedByMetatile(metatile) == TRUE) - if (!gMapHeader.allowRunning || IsRunningDisallowedByMetatile(metatile) == TRUE)
+ if (IsRunningDisallowedByMetatile(metatile) == TRUE) + if (IsRunningDisallowedByMetatile(metatile) == TRUE)
return TRUE; return TRUE;
else else