1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-06-29 22:36:04 +02:00
minetest_game/mods/beds/init.lua
2016-03-09 02:44:32 +00:00

18 lines
362 B
Lua

beds = {}
beds.player = {}
beds.pos = {}
beds.spawn = {}
beds.formspec = "size[8,15;true]" ..
"bgcolor[#080808BB; true]" ..
"button_exit[2,12;4,0.75;leave;Leave Bed]"
local modpath = minetest.get_modpath("beds")
-- Load files
dofile(modpath .. "/functions.lua")
dofile(modpath .. "/api.lua")
dofile(modpath .. "/beds.lua")
dofile(modpath .. "/spawns.lua")