Compressed Gravel registered at Circular Saw

This commit is contained in:
Joachim Stolberg 2018-01-16 19:33:06 +01:00
parent 094490ced4
commit f6bfbeb29d
2 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,5 @@
default
moreores?
moreblocks?
tubelib?
hopper?

View File

@ -397,7 +397,7 @@ minetest.register_node("gravelsieve:sieved_gravel", {
minetest.register_node("gravelsieve:compressed_gravel", {
description = "Compressed Gravel",
tiles = {"gravelsieve_compressed_gravel.png"},
groups = {crumbly = 2, cracky = 2},
groups = {cracky=2, crumbly = 2, cracky = 2},
sounds = default.node_sound_gravel_defaults(),
})
@ -456,3 +456,15 @@ if minetest.get_modpath("hopper") and hopper ~= nil and hopper.add_container ~=
})
end
-- adaption to Circular Saw
if minetest.get_modpath("moreblocks") then
stairsplus:register_all("gravelsieve", "compressed_gravel", "gravelsieve:compressed_gravel", {
description="Compressed Gravel",
groups={cracky=2, crumbly=2, choppy=2, not_in_creative_inventory=1},
tiles = {"gravelsieve_compressed_gravel.png"},
sounds = default.node_sound_stone_defaults(),
})
end