mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
Use only red and white wool for beds
This commit is contained in:
parent
edb02e9d33
commit
ea7b04a712
@ -42,7 +42,7 @@ beds.register_bed("beds:fancy_bed", {
|
|||||||
},
|
},
|
||||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:wool", "group:wool", "group:stick"},
|
{"wool:red", "wool:white", "group:stick"},
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
{"group:wood", "group:wood", "group:wood"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@ -76,7 +76,7 @@ beds.register_bed("beds:bed", {
|
|||||||
},
|
},
|
||||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:wool", "group:wool", "group:wool"},
|
{"wool:red", "wool:red", "wool:white"},
|
||||||
{"group:wood", "group:wood", "group:wood"}
|
{"group:wood", "group:wood", "group:wood"}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -84,21 +84,4 @@ beds.register_bed("beds:bed", {
|
|||||||
|
|
||||||
-- aliases for PA's beds mod
|
-- aliases for PA's beds mod
|
||||||
minetest.register_alias("beds:bed_bottom_red", "beds:bed_bottom")
|
minetest.register_alias("beds:bed_bottom_red", "beds:bed_bottom")
|
||||||
minetest.register_alias("beds:bed_bottom_orange", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_yellow", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_green", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_blue", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_violet", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_black", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_grey", "beds:bed_bottom")
|
|
||||||
minetest.register_alias("beds:bed_bottom_white", "beds:bed_bottom")
|
|
||||||
|
|
||||||
minetest.register_alias("beds:bed_top_red", "beds:bed_top")
|
minetest.register_alias("beds:bed_top_red", "beds:bed_top")
|
||||||
minetest.register_alias("beds:bed_top_orange", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_yellow", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_green", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_blue", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_violet", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_black", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_grey", "beds:bed_top")
|
|
||||||
minetest.register_alias("beds:bed_top_white", "beds:bed_top")
|
|
||||||
|
@ -16,14 +16,14 @@ function beds.read_spawns()
|
|||||||
local input = io.open(file, "r")
|
local input = io.open(file, "r")
|
||||||
if input and not bkwd then
|
if input and not bkwd then
|
||||||
repeat
|
repeat
|
||||||
local x = input:read("*n")
|
local x = input:read("*n")
|
||||||
if x == nil then
|
if x == nil then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
local y = input:read("*n")
|
local y = input:read("*n")
|
||||||
local z = input:read("*n")
|
local z = input:read("*n")
|
||||||
local name = input:read("*l")
|
local name = input:read("*l")
|
||||||
spawns[name:sub(2)] = {x = x, y = y, z = z}
|
spawns[name:sub(2)] = {x = x, y = y, z = z}
|
||||||
until input:read(0) == nil
|
until input:read(0) == nil
|
||||||
io.close(input)
|
io.close(input)
|
||||||
elseif input and bkwd then
|
elseif input and bkwd then
|
||||||
|
Loading…
Reference in New Issue
Block a user