diff options
author | DonBatman <serfdon@gmail.com> | 2015-11-12 16:59:36 -0800 |
---|---|---|
committer | DonBatman <serfdon@gmail.com> | 2015-11-12 16:59:36 -0800 |
commit | ac479f81aa9440c9240e16501e5bfcb74a4ee271 (patch) | |
tree | c52690c1b8eedd39c7e605643e06914899113f49 /mario/blocks.lua | |
parent | 881e4c1e00e66d54bcf318dd6b4b43d80580fa55 (diff) |
removed items from creative inventory
Diffstat (limited to 'mario/blocks.lua')
-rw-r--r-- | mario/blocks.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mario/blocks.lua b/mario/blocks.lua index 66829e2..2dbb6c7 100644 --- a/mario/blocks.lua +++ b/mario/blocks.lua @@ -5,7 +5,7 @@ minetest.register_node("mario:platform",{ }, drawtype = "normal", paramtype = "light", - groups = {cracky = 3}, + groups = {cracky = 1,not_in_creative_inventory=1}, }) minetest.register_node("mario:grey",{ description = "Grey", @@ -15,7 +15,7 @@ minetest.register_node("mario:grey",{ drawtype = "normal", paramtype = "light", light_source = 14, - groups = {cracky = 3}, + groups = {cracky = 1,not_in_creative_inventory=1}, }) minetest.register_node("mario:border",{ description = "Border", @@ -24,7 +24,7 @@ minetest.register_node("mario:border",{ }, drawtype = "normal", paramtype = "light", - groups = {cracky = 3}, + groups = {cracky = 1,not_in_creative_inventory=1}, }) minetest.register_node("mario:brick",{ description = "Brick", @@ -33,14 +33,14 @@ minetest.register_node("mario:brick",{ }, drawtype = "normal", paramtype = "light", - groups = {cracky = 3}, + groups = {cracky = 1,not_in_creative_inventory=1}, }) minetest.register_node("mario:glass", { description = "Glass", tiles = {"mario_grey.png","mario_glass.png"}, drawtype = "glasslike_framed", paramtype = "light", - groups = {cracky = 2}, + groups = {cracky = 1,not_in_creative_inventory=1}, }) minetest.register_node("mario:coin", { description = "Coin", @@ -48,7 +48,7 @@ minetest.register_node("mario:coin", { drawtype = "plantlike", paramtype = "light", walkable = false, - groups = {cracky = 2}, + groups = {cracky = 1,not_in_creative_inventory=1}, on_destruct = function(pos) minetest.sound_play("mario-coin", {pos = pos,max_hear_distance = 40,gain = 10.0,}) end, @@ -85,7 +85,7 @@ minetest.register_node("mario:mushroom",{ drawtype = "nodebox", paramtype = "light", walkable = false, - groups = {cracky = 3}, + groups = {cracky = 1,not_in_creative_inventory=1}, node_box = nbox, on_timer = function(pos, dtime) minetest.remove_node(pos) @@ -109,7 +109,7 @@ minetest.register_node("mario:mushroom_green",{ drawtype = "nodebox", paramtype = "light", walkable = false, - groups = {cracky = 3}, + groups = {cracky = 1,not_in_creative_inventory=1}, node_box = nbox, on_timer = function(pos, dtime) minetest.remove_node(pos) |