15 lines
266 B
Lua
15 lines
266 B
Lua
|
|
spacesuit = {
|
|
armor_use = tonumber(minetest.settings:get("spacesuit.armor_use")) or 70,
|
|
}
|
|
|
|
|
|
local MP = minetest.get_modpath("spacesuit")
|
|
|
|
dofile(MP.."/suit.lua")
|
|
dofile(MP.."/crafts.lua")
|
|
dofile(MP.."/hud.lua")
|
|
dofile(MP.."/drowning.lua")
|
|
|
|
print("[OK] Spacesuit")
|