diff options
author | Fernando Carmona Varo <ferkiwi@gmail.com> | 2015-10-28 00:03:28 +0100 |
---|---|---|
committer | Fernando Carmona Varo <ferkiwi@gmail.com> | 2015-10-28 00:03:28 +0100 |
commit | 4c03a0e5880e44e920007ead8212025858a1fb21 (patch) | |
tree | 20e7ec370ea0f95a93d2402e7f897e09729a7966 /mario/blocks.lua | |
parent | 3eb0d44c20383a1c3d0fe4552b169b223010a46e (diff) | |
parent | 55ba62165293b6bf8f3f78e2e5fc3bb5152400f4 (diff) |
Merge branch 'master' of https://github.com/DonBatman/myarcade
Conflicts:
mario/gamestate.lua
mario/hud.lua
mario/init.lua
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) |