2017-05-07 20:21:37 +02:00
|
|
|
mcl_beds = {}
|
|
|
|
mcl_beds.player = {}
|
|
|
|
mcl_beds.pos = {}
|
2019-02-20 20:40:06 +01:00
|
|
|
mcl_beds.bed_pos = {}
|
2017-02-12 23:43:30 +01:00
|
|
|
|
2017-05-07 20:21:37 +02:00
|
|
|
local modpath = minetest.get_modpath("mcl_beds")
|
2017-02-12 23:43:30 +01:00
|
|
|
|
|
|
|
-- Load files
|
|
|
|
|
|
|
|
dofile(modpath .. "/functions.lua")
|
|
|
|
dofile(modpath .. "/api.lua")
|
|
|
|
dofile(modpath .. "/beds.lua")
|
2022-04-25 16:02:36 +02:00
|
|
|
dofile(modpath .. "/respawn_anchor.lua")
|