Compressed Gravel registered at Circular Saw
This commit is contained in:
parent
094490ced4
commit
f6bfbeb29d
@ -1,5 +1,5 @@
|
||||
default
|
||||
moreores?
|
||||
moreblocks?
|
||||
tubelib?
|
||||
hopper?
|
||||
|
||||
|
14
init.lua
14
init.lua
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user