Prevent walking through warp doors

This commit is contained in:
MysterD 2021-06-26 20:20:19 -07:00
parent b7795fd9d1
commit 6c687a5a73
2 changed files with 4858 additions and 0 deletions

4857
log.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -22,6 +22,7 @@ void door_animation_and_reset(s32 sp18) {
u8 door_allow_walk_through(void) {
if (gCurrCourseNum != COURSE_NONE && gMarioStates[0].action == ACT_BUBBLED) { return TRUE; }
if (o->oAction == 0 || o->oAction > 2) { return FALSE; }
if (o->oInteractType == INTERACT_WARP_DOOR) { return FALSE; }
// special override for BBH's back door, camera gets stuck otherwise
if (gCurrCourseNum == COURSE_BBH && o->oDoorUnkF8 == 28) {