Use only red and white wool for beds

这个提交包含在:
BlockMen
2015-02-24 21:44:21 +01:00
父节点 edb02e9d33
当前提交 ea7b04a712
共有 2 个文件被更改,包括 10 次插入27 次删除

查看文件

@ -16,14 +16,14 @@ function beds.read_spawns()
local input = io.open(file, "r")
if input and not bkwd then
repeat
local x = input:read("*n")
if x == nil then
break
end
local y = input:read("*n")
local z = input:read("*n")
local name = input:read("*l")
spawns[name:sub(2)] = {x = x, y = y, z = z}
local x = input:read("*n")
if x == nil then
break
end
local y = input:read("*n")
local z = input:read("*n")
local name = input:read("*l")
spawns[name:sub(2)] = {x = x, y = y, z = z}
until input:read(0) == nil
io.close(input)
elseif input and bkwd then