mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-25 18:20:36 +01:00
[christmas_craft] Remove its snow block
This commit is contained in:
parent
629e877970
commit
6db59ee981
@ -24,14 +24,14 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
--[[minetest.register_craft({
|
||||||
output = "christmas_craft:snow_block",
|
output = "christmas_craft:snow_block",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:snow","default:snow","default:snow"},
|
{"default:snow","default:snow","default:snow"},
|
||||||
{"default:snow","default:snow","default:snow"},
|
{"default:snow","default:snow","default:snow"},
|
||||||
{"default:snow","default:snow","default:snow"},
|
{"default:snow","default:snow","default:snow"},
|
||||||
}
|
}
|
||||||
})
|
})]]
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "christmas_craft:snowman",
|
output = "christmas_craft:snowman",
|
||||||
@ -52,12 +52,12 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
--[[minetest.register_craft({
|
||||||
output = "default:snow 9",
|
output = "default:snow 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"christmas_craft:snow_block"},
|
{"christmas_craft:snow_block"},
|
||||||
}
|
}
|
||||||
})
|
})]]
|
||||||
|
|
||||||
|
|
||||||
--------------------------
|
--------------------------
|
||||||
|
@ -59,13 +59,14 @@ minetest.register_node("christmas_craft:christmas_star", {
|
|||||||
sounds = default.node_sound_sand_defaults(),
|
sounds = default.node_sound_sand_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("christmas_craft:snow_block", {
|
--[[minetest.register_node("christmas_craft:snow_block", {
|
||||||
description = "snow block",
|
description = "snow block",
|
||||||
tiles = {"snow.png"},
|
tiles = {"snow.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {crumbly=3},
|
groups = {crumbly=3},
|
||||||
sounds = default.node_sound_sand_defaults(),
|
sounds = default.node_sound_sand_defaults(),
|
||||||
})
|
})]]
|
||||||
|
minetest.register_alias("christmas_craft:snow_block", "default:snowblock")
|
||||||
|
|
||||||
minetest.register_node("christmas_craft:christmas_leaves", {
|
minetest.register_node("christmas_craft:christmas_leaves", {
|
||||||
description = "Christmas leaves",
|
description = "Christmas leaves",
|
||||||
|
Loading…
Reference in New Issue
Block a user