Rename beds mod to mcl_beds
This commit is contained in:
parent
4c71611c3d
commit
d76ab30892
19 changed files with 102 additions and 83 deletions
17
mods/ITEMS/mcl_beds/init.lua
Normal file
17
mods/ITEMS/mcl_beds/init.lua
Normal file
|
@ -0,0 +1,17 @@
|
|||
mcl_beds = {}
|
||||
mcl_beds.player = {}
|
||||
mcl_beds.pos = {}
|
||||
mcl_beds.spawn = {}
|
||||
|
||||
mcl_beds.formspec = "size[8,15;true]" ..
|
||||
"bgcolor[#080808BB; true]" ..
|
||||
"button_exit[2,12;4,0.75;leave;Leave Bed]"
|
||||
|
||||
local modpath = minetest.get_modpath("mcl_beds")
|
||||
|
||||
-- Load files
|
||||
|
||||
dofile(modpath .. "/functions.lua")
|
||||
dofile(modpath .. "/api.lua")
|
||||
dofile(modpath .. "/beds.lua")
|
||||
dofile(modpath .. "/spawns.lua")
|
Loading…
Add table
Add a link
Reference in a new issue