fix empty sound functions

This commit is contained in:
tenplus1 2024-09-28 17:45:51 +01:00
parent 2503310260
commit 33a5b6eadb

View File

@ -4,8 +4,9 @@
if not minetest.global_exists("default") then
default = {
node_sound_stone_defaults = function(table) end,
node_sound_wood_defaults = function(table) end,
node_sound_stone_defaults = function(table) return {} end,
node_sound_wood_defaults = function(table) return {} end,
node_sound_metal_defaults = function(table) return {} end,
gui_bg = "", gui_bg_img = "", gui_slots = ""
}
end