From 0290511578ed132ee83a3796fe2a5368f61f6d13 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 11 Dec 2017 01:43:01 +0100 Subject: [PATCH] Infested blocks now break instantly --- mods/ITEMS/mcl_monster_eggs/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_monster_eggs/init.lua b/mods/ITEMS/mcl_monster_eggs/init.lua index ec322fdff..cdacc7fda 100644 --- a/mods/ITEMS/mcl_monster_eggs/init.lua +++ b/mods/ITEMS/mcl_monster_eggs/init.lua @@ -20,13 +20,13 @@ local register_block = function(subname, description, tiles, is_ground_content) description = description, tiles = tiles, is_ground_content = is_ground_content, - groups = {handy = 1, spawns_silverfish = 1, deco_block = 1}, + groups = {dig_immediate = 3, spawns_silverfish = 1, deco_block = 1}, drop = '', is_ground_content = false, sounds = mcl_sounds.node_sound_stone_defaults(), after_dig_node = spawn_silverfish, _doc_items_longdesc = S("An infested block is a block from which a silverfish will pop out when it is broken. It looks identical to its normal counterpart."), - _mcl_hardness = 0.75, + _mcl_hardness = 0, _mcl_blast_resistance = 3.75, }) end