diff options
author | DonBatman <serfdon@gmail.com> | 2015-10-27 12:35:55 -0700 |
---|---|---|
committer | DonBatman <serfdon@gmail.com> | 2015-10-27 12:35:55 -0700 |
commit | 32148072652c69844bbaa3e19d6071d48980a7d8 (patch) | |
tree | 4bbeef90c0489b7e552d4f00e36aed4dbd1739a2 /mario/blocks.lua | |
parent | 3ddfbbc093a641cf5e4388fa07b2564465b739ef (diff) |
Stared work on gamestate and hud for mario
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) |