forked from minetest-mods/moreblocks
Make circular saw and all cut nodes considered as non-ground content (#204)
Default to not being ground content. The few nodes that were registered as ground content shouldn't be considered ground content. * cut nodes aren't ground content By default make cut nodes non ground content but allow mods to register theirs as ground content if they want to.
This commit is contained in:
committed by
GitHub
parent
79a0c76d40
commit
54b2217aeb
@ -447,6 +447,7 @@ minetest.register_node("moreblocks:circular_saw", {
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
||||
is_ground_content = false,
|
||||
sounds = moreblocks.node_sound_wood_defaults(),
|
||||
on_construct = circular_saw.on_construct,
|
||||
can_dig = circular_saw.can_dig,
|
||||
|
Reference in New Issue
Block a user