From 00b0b7cd8f29cbdc78672fa087c258b35683a7a2 Mon Sep 17 00:00:00 2001 From: MysterD Date: Fri, 4 Sep 2020 21:14:14 -0700 Subject: [PATCH] Remote reading sign no longer causes sound spam fixes #20 --- src/game/mario_actions_cutscene.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/game/mario_actions_cutscene.c b/src/game/mario_actions_cutscene.c index 9f5c800f..619958f5 100644 --- a/src/game/mario_actions_cutscene.c +++ b/src/game/mario_actions_cutscene.c @@ -534,6 +534,11 @@ s32 act_reading_sign(struct MarioState *m) { struct Object *marioObj = m->marioObj; + if (m->playerIndex != 0) { + set_mario_animation(m, MARIO_ANIM_FIRST_PERSON); + return FALSE; + } + play_sound_if_no_flag(m, SOUND_ACTION_READ_SIGN, MARIO_ACTION_SOUND_PLAYED); switch (m->actionState) {