mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-04 14:53:51 +01:00
13 lines
278 B
Lua
13 lines
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") |