Update init.lua

This commit is contained in:
Pinky Snow 2015-12-22 03:27:23 -05:00
parent 0698511eab
commit 4eacc2c2f3

View file

@ -57,7 +57,7 @@ minetest.register_chatcommand("sethome", {
local output = io.open(home_file, "w")
local data = {}
for n, p in pairs(homepos) do
table.insert(data,(p.x.." "..p.y.." "..p.z.." "..n.."\n")
table.insert(data,(p.x.." "..p.y.." "..p.z.." "..n.."\n"))
end
output:write(table.concat(data))
io.close(output)