tweak block groups

This commit is contained in:
TenPlus1 2018-10-24 16:43:43 +01:00
parent 0cb46ab251
commit 9e378eeff5
2 changed files with 3 additions and 3 deletions

@ -657,7 +657,7 @@ minetest.register_node('lucky_block:lucky_block', {
is_ground_content = false,
paramtype = "light",
light_source = 3,
groups = {oddly_breakable_by_hand = 3},
groups = {oddly_breakable_by_hand = 3, unbreakable = 1},
drop = {},
sounds = default.node_sound_wood_defaults(),
@ -695,7 +695,7 @@ minetest.register_node('lucky_block:super_lucky_block', {
sunlight_propagates = false,
is_ground_content = false,
paramtype = "light",
groups = {cracky = 1, level = 2},
groups = {cracky = 1, level = 2, unbreakable = 1},
drop = {},
sounds = default.node_sound_stone_defaults(),

@ -170,7 +170,7 @@ minetest.register_node("lucky_block:well_block", {
description = "Well Block",
tiles = {"default_glass.png"},
light_source = 5,
groups = {not_in_creative_inventory = 1},
groups = {not_in_creative_inventory = 1, unbreakable = 1},
on_blast = function() end,
drop = {},
})