Disable cactus block/brick glowing

master
Wuzzy 2017-12-13 22:00:16 +01:00
parent 7c11850fb7
commit d153f3f242
1 changed files with 3 additions and 3 deletions

View File

@ -891,7 +891,6 @@ minetest.register_node("default:cactus_block", {
description = "Cactus Block",
tiles = {"default_cactus_block.png"},
is_ground_content = true,
light_source = 5,
groups = {snappy=1,choppy=3,flammable=2},
sounds = default.node_sound_stone_defaults(),
})
@ -900,11 +899,12 @@ minetest.register_node("default:cactus_brick", {
description = "Cactus Brick",
tiles = {"default_cactus_brick.png"},
is_ground_content = true,
light_source = 5,
groups = {snappy=1,choppy=3,flammable=2},
sounds = default.node_sound_stone_defaults(),
})
-- TODO: Add glowing cactus block/brick back
minetest.register_node("default:sugarcane", {
description = "Sugarcane",
drawtype = "plantlike",
@ -2405,4 +2405,4 @@ minetest.register_node("default:stone_with_ruby", {
groups = {cracky=1},
drop = "default:ruby",
sounds = default.node_sound_stone_defaults(),
})
})