From 72235f7522c076c609aff20c06a7e92a13e047c9 Mon Sep 17 00:00:00 2001 From: En Yi Date: Wed, 22 Nov 2023 21:13:10 +0800 Subject: [PATCH] Play box land sfc for chests as well --- scenes/game_systems.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/game_systems.c b/scenes/game_systems.c index 7d03dab..376d0ed 100644 --- a/scenes/game_systems.c +++ b/scenes/game_systems.c @@ -1473,7 +1473,7 @@ void state_transition_update_system(Scene_t* scene) { play_sfx(scene->engine, BOULDER_LAND_SFX); } - else if (p_ent->m_tag == CRATES_ENT_TAG) + else if (p_ent->m_tag == CRATES_ENT_TAG || p_ent->m_tag == CHEST_ENT_TAG) { play_sfx(scene->engine, WOOD_LAND_SFX); }