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 |
|
c17732
|
5 |
local modpath = minetest.get_modpath("technic_chests") |
fd3f25
|
6 |
|
49e82a
|
7 |
technic = rawget(_G, "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 |
|