diff options
Diffstat (limited to 'technic_chests')
-rw-r--r-- | technic_chests/init.lua | 1 | ||||
-rw-r--r-- | technic_chests/wooden_chest.lua | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/technic_chests/init.lua b/technic_chests/init.lua index af9e041..3565987 100644 --- a/technic_chests/init.lua +++ b/technic_chests/init.lua @@ -9,7 +9,6 @@ technic.chests = {} dofile(modpath.."/common.lua") dofile(modpath.."/register.lua") -dofile(modpath.."/wooden_chest.lua") dofile(modpath.."/iron_chest.lua") dofile(modpath.."/copper_chest.lua") dofile(modpath.."/silver_chest.lua") diff --git a/technic_chests/wooden_chest.lua b/technic_chests/wooden_chest.lua index 0fad12c..120a318 100644 --- a/technic_chests/wooden_chest.lua +++ b/technic_chests/wooden_chest.lua @@ -1,3 +1,5 @@ +--[[ + local udef = technic.chests:definition("Wooden", { width = 8, height = 4, @@ -49,3 +51,5 @@ if minetest.registered_nodes["default:chest_locked"].description == "Locked Ches lldef.description = ldef.description end minetest.override_item("default:chest_locked", lldef) + +--]] |