From 3edb08c98dcab9490312e2a2df3f8e5770875179 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 ab2927641..65f989fb0 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;