diff --git a/mods/PLAYER/mcl_death_drop/init.lua b/mods/PLAYER/mcl_death_drop/init.lua index bfeee0c3..060fc635 100644 --- a/mods/PLAYER/mcl_death_drop/init.lua +++ b/mods/PLAYER/mcl_death_drop/init.lua @@ -15,6 +15,9 @@ mcl_death_drop.register_dropped_list("PLAYER", "craft", true) mcl_death_drop.register_dropped_list("PLAYER", "armor", true) minetest.register_on_dieplayer(function(player) + -- The beat dropped harder than your items + minetest.sound_play("mcl_death_beat_drop", {to_player = player:get_player_name()}) + local keep = minetest.settings:get_bool("mcl_keepInventory", false) if keep == false then -- Drop inventory, crafting grid and armor diff --git a/mods/PLAYER/mcl_death_drop/sounds/mcl_death_beat_drop.ogg b/mods/PLAYER/mcl_death_drop/sounds/mcl_death_beat_drop.ogg new file mode 100644 index 00000000..2ef8a3ff Binary files /dev/null and b/mods/PLAYER/mcl_death_drop/sounds/mcl_death_beat_drop.ogg differ