Remove undeclared writing variable

master
kilbith 2015-03-06 11:43:54 +01:00 committed by BlockMen
parent 2a6050e552
commit 86e0e4b2bf
1 changed files with 0 additions and 2 deletions

View File

@ -41,13 +41,11 @@ function beds.save_spawns()
if not beds.spawn then
return
end
writing = true
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")
end
io.close(output)
writing = false
end
function beds.set_spawns()