mirror of
https://github.com/mt-mods/spacesuit.git
synced 2026-05-04 13:56:51 -06:00
16 lines
246 B
Lua
16 lines
246 B
Lua
|
|
spacesuit = {
|
|
armor_use = tonumber(minetest.settings:get("spacesuit.armor_use")) or 150,
|
|
}
|
|
|
|
|
|
local MP = minetest.get_modpath("spacesuit")
|
|
|
|
dofile(MP.."/suit.lua")
|
|
dofile(MP.."/crafts.lua")
|
|
dofile(MP.."/drowning.lua")
|
|
|
|
|
|
|
|
print("[OK] Spacesuit")
|