Prevented Bowser from remaining invisible when held

This commit is contained in:
MysterD 2020-10-04 13:24:44 -07:00
parent 01139061df
commit 85664c8fac
1 changed files with 3 additions and 1 deletions

View File

@ -122,8 +122,10 @@ void bhv_bowser_body_anchor_loop(void) {
else
cur_obj_become_tangible();
}
if (o->parentObj->oHeldState != HELD_FREE)
if (o->parentObj->oHeldState != HELD_FREE) {
cur_obj_become_intangible();
o->parentObj->oOpacity = 0xFF;
}
o->oInteractStatus = 0;
}