Prevented bubbled players from interacting with objects
This commit is contained in:
parent
fb775165ce
commit
931ee9ca13
|
@ -1990,7 +1990,7 @@ void mario_process_interactions(struct MarioState *m) {
|
||||||
sDelayInvincTimer = FALSE;
|
sDelayInvincTimer = FALSE;
|
||||||
sInvulnerable = (m->action & ACT_FLAG_INVULNERABLE) || m->invincTimer != 0;
|
sInvulnerable = (m->action & ACT_FLAG_INVULNERABLE) || m->invincTimer != 0;
|
||||||
|
|
||||||
if (!(m->action & ACT_FLAG_INTANGIBLE) && m->collidedObjInteractTypes != 0) {
|
if (!(m->action & ACT_FLAG_INTANGIBLE) && m->collidedObjInteractTypes != 0 && is_player_active(m)) {
|
||||||
s32 i;
|
s32 i;
|
||||||
for (i = 0; i < 32; i++) {
|
for (i = 0; i < 32; i++) {
|
||||||
u32 interactType = sInteractionHandlers[i].interactType;
|
u32 interactType = sInteractionHandlers[i].interactType;
|
||||||
|
|
Loading…
Reference in New Issue