diff options
Diffstat (limited to 'mario/blocks.lua')
-rw-r--r-- | mario/blocks.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mario/blocks.lua b/mario/blocks.lua index 7005de3..f44f61f 100644 --- a/mario/blocks.lua +++ b/mario/blocks.lua @@ -80,6 +80,7 @@ minetest.register_node("mario:mushroom",{ }, drawtype = "nodebox", paramtype = "light", + walkable = false, groups = {cracky = 3}, node_box = nbox, on_destruct = function(pos) @@ -99,6 +100,7 @@ minetest.register_node("mario:mushroom_green",{ }, drawtype = "nodebox", paramtype = "light", + walkable = false, groups = {cracky = 3}, node_box = nbox, on_destruct = function(pos) |