From c809d45c39777f3af5cdfac01be617c201a25558 Mon Sep 17 00:00:00 2001 From: Looki2000 Date: Tue, 22 Nov 2022 00:45:35 +0100 Subject: [PATCH] added new music at 100 shits --- mods/poop/init.lua | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/mods/poop/init.lua b/mods/poop/init.lua index 9b27f45..65717c5 100644 --- a/mods/poop/init.lua +++ b/mods/poop/init.lua @@ -369,6 +369,19 @@ minetest.register_craftitem("poop:plumba", { minetest.add_node(pointed_thing.under, {name="poop:box"}) minetest.chat_send_player(user:get_player_name(), "You packed "..pooped_things.." shits!") pooped_things = pooped_things + 1 + + if pooped_things == 100 then + -- stop first music loop + minetest.sound_stop(first_music) + -- play second music loop + minetest.sound_play("shit_all_over_the_place", { + gain = 1, + pitch = 1, + loop = true, + }) + + end + destruction_counter.nodesDestroyed = pooped_things destruction_counter.updateCounter(user) pakuj_guwno() @@ -426,7 +439,7 @@ minetest.register_on_joinplayer(function(player) player:get_inventory():set_list("main", {}) -- set time to day minetest.set_timeofday(0.5) - minetest.sound_play("pooping_together", { + first_music = minetest.sound_play("pooping_together", { gain = 1, pitch = 1, loop = true,