Default/functions: Reduce lavacooling ABM/sound overload
[oweals/minetest_game.git] / mods / beds / init.lua
1 beds = {}
2 beds.player = {}
3 beds.pos = {}
4 beds.spawn = {}
5
6 beds.formspec = "size[8,15;true]"..
7                 "bgcolor[#080808BB; true]"..
8                 "button_exit[2,12;4,0.75;leave;Leave Bed]"
9
10 local modpath = minetest.get_modpath("beds")
11
12 -- load files
13 dofile(modpath.."/functions.lua")
14 dofile(modpath.."/api.lua")
15 dofile(modpath.."/beds.lua")
16 dofile(modpath.."/spawns.lua")