Zefram
2014-08-22 0cf4133b9718b95dc65b5357892255a5115919e8
commit | author | age
fd3f25 1 -- Minetest 0.4.6 mod: technic_chests
R 2 -- namespace: technic
3 -- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
4
78cacd 5 modpath = minetest.get_modpath("technic_chests")
fd3f25 6
d60e3f 7 technic = technic or {}
78cacd 8 technic.chests = {}
S 9
10 dofile(modpath.."/common.lua")
11 dofile(modpath.."/register.lua")
f7d103 12 dofile(modpath.."/wooden_chest.lua")
fd3f25 13 dofile(modpath.."/iron_chest.lua")
R 14 dofile(modpath.."/copper_chest.lua")
15 dofile(modpath.."/silver_chest.lua")
16 dofile(modpath.."/gold_chest.lua")
17 dofile(modpath.."/mithril_chest.lua")
78cacd 18