Skip to content
Snippets Groups Projects
Commit 5b36a03f authored by tenplus1's avatar tenplus1 Committed by Milan
Browse files

merge upstream commit: Beds: Save respawn position when entering bed, only read bed spawns once

parent 26a00db1
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,6 @@ end
function beds.skip_night()
minetest.set_timeofday(0.23)
beds.set_spawns()
end
function beds.on_rightclick(pos, player)
......@@ -149,6 +148,7 @@ function beds.on_rightclick(pos, player)
-- move to bed
if not beds.player[name] then
lay_down(player, ppos, pos)
beds.set_spawns() -- save respawn positions when entering bed
else
lay_down(player, nil, nil, false)
end
......@@ -174,10 +174,6 @@ end
-- Callbacks
minetest.register_on_joinplayer(function(player)
beds.read_spawns()
end)
-- respawn player at bed if enabled and valid position is found
minetest.register_on_respawnplayer(function(player)
if not enable_respawn then
......
......@@ -37,6 +37,8 @@ function beds.read_spawns()
end
end
beds.read_spawns()
function beds.save_spawns()
if not beds.spawn then
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment