Drop the crate (texture is too ugly)
This commit is contained in:
parent
5ee3b1d8f6
commit
ffdbc8bffd
@ -184,14 +184,7 @@ for _, c in pairs({"red"}) do -- Add more curtains colors simply here.
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
xdecor.register("crate", {
|
minetest.register_alias("xdecor:crate", "default:chess")
|
||||||
description = "Crate",
|
|
||||||
inventory = {size=24},
|
|
||||||
infotext = "Crate",
|
|
||||||
tiles = {"xdecor_crate.png"},
|
|
||||||
groups = {choppy=2, oddly_breakable_by_hand=1, flammable=3},
|
|
||||||
sounds = default.node_sound_wood_defaults()
|
|
||||||
})
|
|
||||||
|
|
||||||
xdecor.register("cushion", {
|
xdecor.register("cushion", {
|
||||||
description = "Cushion",
|
description = "Cushion",
|
||||||
|
@ -96,15 +96,6 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "xdecor:crate",
|
|
||||||
recipe = {
|
|
||||||
{"group:wood", "group:wood", "group:stick"},
|
|
||||||
{"group:wood", "group:stick", "group:wood"},
|
|
||||||
{"group:stick", "group:wood", "group:wood"}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "xdecor:mossycobble_wall_ln 6",
|
output = "xdecor:mossycobble_wall_ln 6",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 381 B |
@ -339,7 +339,6 @@ xdecor.register("worktable", {
|
|||||||
on_receive_fields = worktable.fields,
|
on_receive_fields = worktable.fields,
|
||||||
on_metadata_inventory_put = worktable.on_put,
|
on_metadata_inventory_put = worktable.on_put,
|
||||||
on_metadata_inventory_take = worktable.on_take,
|
on_metadata_inventory_take = worktable.on_take,
|
||||||
on_metadata_inventory_move = worktable.on_move,
|
|
||||||
allow_metadata_inventory_put = worktable.put,
|
allow_metadata_inventory_put = worktable.put,
|
||||||
allow_metadata_inventory_take = worktable.take,
|
allow_metadata_inventory_take = worktable.take,
|
||||||
allow_metadata_inventory_move = worktable.move
|
allow_metadata_inventory_move = worktable.move
|
||||||
|
Loading…
Reference in New Issue
Block a user