mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-10-28 20:28:21 +01:00
13 lines
No EOL
278 B
Lua
13 lines
No EOL
278 B
Lua
mcl_beds = {}
|
|
mcl_beds.player = {}
|
|
mcl_beds.pos = {}
|
|
mcl_beds.bed_pos = {}
|
|
|
|
local modpath = minetest.get_modpath("mcl_beds")
|
|
|
|
-- Load files
|
|
|
|
dofile(modpath .. "/functions.lua")
|
|
dofile(modpath .. "/api.lua")
|
|
dofile(modpath .. "/beds.lua")
|
|
dofile(modpath .. "/respawn_anchor.lua") |