sethome: Do not write empty homes file

This commit is contained in:
sfan5 2020-06-10 14:50:49 +02:00
parent 6d2a897e1b
commit af045dcd8b
1 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,9 @@ sethome.set = function(name, pos)
player:set_attribute("sethome:home", minetest.pos_to_string(pos))
-- remove `name` from the old storage file
if not homepos[name] then
return true
end
local data = {}
local output = io.open(homes_file, "w")
if output then