2019-04-01 00:39:30 -04:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
2019-08-31 09:26:53 -04:00
|
|
|
local nodecore
|
|
|
|
= nodecore
|
2019-04-01 00:39:30 -04:00
|
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
|
2019-08-31 09:26:53 -04:00
|
|
|
nodecore.register_on_register_item(function(_, def)
|
2019-04-01 00:39:30 -04:00
|
|
|
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)
|