1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-02 14:50:20 +02:00

Beds: Fix code style issues

This commit is contained in:
paramat
2016-03-08 03:14:29 +00:00
parent aa676ab878
commit 45bc0b245f
5 changed files with 86 additions and 83 deletions

View File

@ -43,7 +43,7 @@ function beds.save_spawns()
end
local output = io.open(org_file, "w")
for i, v in pairs(beds.spawn) do
output:write(v.x.." "..v.y.." "..v.z.." "..i.."\n")
output:write(v.x .. " " .. v.y .. " " .. v.z .. " " .. i .. "\n")
end
io.close(output)
end