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