From 4c5b0570389603731744a64b67de25e1467df8ac Mon Sep 17 00:00:00 2001 From: ancientmarinerdev Date: Sun, 5 Mar 2023 19:16:53 +0000 Subject: [PATCH] Removed duplicate track --- mods/PLAYER/mcl_music/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/PLAYER/mcl_music/init.lua b/mods/PLAYER/mcl_music/init.lua index 8e673dda9..7bd0cfbbf 100644 --- a/mods/PLAYER/mcl_music/init.lua +++ b/mods/PLAYER/mcl_music/init.lua @@ -14,7 +14,7 @@ local lonely_blossom = "exhale_and_tim_unwin-lonely_blossom" local valley_of_ghosts = "exhale_and_tim_unwin-valley_of_ghosts" local dimension_to_base_track = { - ["overworld"] = {pianowtune, flock_of_one, gift, hailing_forest, lonely_blossom, valley_of_ghosts}, + ["overworld"] = {pianowtune, flock_of_one, gift, hailing_forest, lonely_blossom}, ["nether"] = {nether_tune, valley_of_ghosts}, ["end"] = {end_tune}, ["mining"] = {odd_block}, @@ -59,7 +59,7 @@ local function stop_music_for_listener_name(listener_name) if not listener then return end local handle = listener.handle if not handle then return end - + minetest.log("action", "[mcl_music] Stopping music") minetest.sound_stop(handle) listeners[listener_name].handle = nil