nodecore-cd2025/mods/nc_api/item_tool_sounds.lua
2019-04-01 00:39:30 -04:00

12 lines
396 B
Lua

-- LUALOCALS < ---------------------------------------------------------
local nodecore, type
= nodecore, type
-- LUALOCALS > ---------------------------------------------------------
nodecore.register_on_register_item(function(name, def)
if def.type == "tool" then
def.sound = def.sound or {}
def.sound.breaks = def.sound.breaks or {name = "nc_api_toolbreak", gain = 1}
end
end)