mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-28 17:46:28 -04:00
Fix undeclared local variable
This commit is contained in:
parent
2a6050e552
commit
2ea4ab347f
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ function beds.save_spawns()
|
|||
if not beds.spawn then
|
||||
return
|
||||
end
|
||||
writing = true
|
||||
local 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")
|
||||
|
|
Loading…
Add table
Reference in a new issue