Skip to content
Snippets Groups Projects
Commit 176ddba1 authored by DS's avatar DS Committed by SmallJoker
Browse files

Reset spawn position on bed destruction

parent eac47953
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,8 @@ local function destruct_bed(pos, n)
reverse = not reverse
minetest.remove_node(other)
minetest.check_for_falling(other)
beds.remove_spawns_at(pos)
beds.remove_spawns_at(other)
else
reverse = not reverse
end
......
......@@ -61,3 +61,12 @@ function beds.set_spawns()
end
beds.save_spawns()
end
function beds.remove_spawns_at(pos)
for name, p in pairs(beds.spawn) do
if vector.equals(vector.round(p), pos) then
beds.spawn[name] = nil
end
end
beds.save_spawns()
end
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