summaryrefslogtreecommitdiff
path: root/technic_chests
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-06-17 22:11:09 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-06-17 22:11:09 -0400
commit4f3730a3de33bff5f2984a8fc32b92a6956b9118 (patch)
treeda266461a9d15f84c81b16bdadfe76ab93dd076f /technic_chests
parented1e4b7c37efd4a0c8a3b1730cf048c0c8b660e7 (diff)
downloaddreambuilder_modpack-4f3730a3de33bff5f2984a8fc32b92a6956b9118.tar
dreambuilder_modpack-4f3730a3de33bff5f2984a8fc32b92a6956b9118.tar.gz
dreambuilder_modpack-4f3730a3de33bff5f2984a8fc32b92a6956b9118.tar.bz2
dreambuilder_modpack-4f3730a3de33bff5f2984a8fc32b92a6956b9118.tar.xz
dreambuilder_modpack-4f3730a3de33bff5f2984a8fc32b92a6956b9118.zip
update technic and pipeworks
Diffstat (limited to 'technic_chests')
-rw-r--r--technic_chests/init.lua1
-rw-r--r--technic_chests/wooden_chest.lua4
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)
+
+--]]