From 2a64c806f6abb1d7cc680b21163203cf3dbaf553 Mon Sep 17 00:00:00 2001 From: MysterD Date: Thu, 12 Aug 2021 18:18:28 -0700 Subject: [PATCH] Allow multiple players to interact with the same BBH cage --- src/game/interaction.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/game/interaction.c b/src/game/interaction.c index ab292764..65f989fb 100644 --- a/src/game/interaction.c +++ b/src/game/interaction.c @@ -939,7 +939,9 @@ u32 interact_bbh_entrance(struct MarioState *m, UNUSED u32 interactType, struct if (m->action != ACT_BBH_ENTER_SPIN && m->action != ACT_BBH_ENTER_JUMP) { mario_stop_riding_and_holding(m); - o->oInteractStatus = INT_STATUS_INTERACTED; + if (m->playerIndex == 0) { + o->oInteractStatus = INT_STATUS_INTERACTED; + } m->interactObj = o; m->usedObj = o;