mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-26 12:01:43 +00:00
Prevented Bowser from remaining invisible when held
This commit is contained in:
parent
303d276274
commit
c56114cfa2
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue