Default: Enable crafting of mese crystal fragments into mese crystal
[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
14 dofile(modpath .. "/functions.lua")
15 dofile(modpath .. "/api.lua")
16 dofile(modpath .. "/beds.lua")
17 dofile(modpath .. "/spawns.lua")