| | |
| | | -- Minetest 0.4.6 : technic |
| | | -- Minetest 0.4.6 mod: technic |
| | | -- namespace: technic |
| | | -- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl> |
| | | |
| | | modpath=minetest.get_modpath("technic") |
| | | |
| | |
| | | --helper functions |
| | | dofile(modpath.."/helpers.lua") |
| | | |
| | | -- chests |
| | | dofile(modpath.."/chest_commons.lua") |
| | | dofile(modpath.."/iron_chest.lua") |
| | | dofile(modpath.."/copper_chest.lua") |
| | | dofile(modpath.."/silver_chest.lua") |
| | | dofile(modpath.."/gold_chest.lua") |
| | | dofile(modpath.."/mithril_chest.lua") |
| | | |
| | | --items |
| | | dofile(modpath.."/concrete.lua") |
| | | dofile(modpath.."/items.lua") |
| | | |
| | | --LV machines |
| | |
| | | dofile(modpath.."/deployer.lua") |
| | | dofile(modpath.."/constructor.lua") |
| | | dofile(modpath.."/frames.lua") |
| | | |
| | | |
| | | if enable_item_drop then dofile(modpath.."/item_drop.lua") end |
| | | if enable_item_pickup then dofile(modpath.."/item_pickup.lua") end |