From 2c9b68688595667f19f9ce30fb4cfdfb6c4826e0 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 11 Dec 2017 01:28:53 +0100 Subject: [PATCH] =?UTF-8?q?Rename=20monster=20egg=20to=20=E2=80=9Cinfested?= =?UTF-8?q?=E2=80=9D=20blocks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mods/ITEMS/mcl_monster_eggs/description.txt | 2 +- mods/ITEMS/mcl_monster_eggs/init.lua | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mods/ITEMS/mcl_monster_eggs/description.txt b/mods/ITEMS/mcl_monster_eggs/description.txt index 23ee58b02..ae7cab253 100644 --- a/mods/ITEMS/mcl_monster_eggs/description.txt +++ b/mods/ITEMS/mcl_monster_eggs/description.txt @@ -1 +1 @@ -Adds “monster eggs”. These are blocks which disguise themselves as stone blocks and spawn a silverfish when broken. +Adds infested blocks: Blocks which which disguise themselves as stone blocks and spawn a silverfish when broken. diff --git a/mods/ITEMS/mcl_monster_eggs/init.lua b/mods/ITEMS/mcl_monster_eggs/init.lua index 417c01309..ec322fdff 100644 --- a/mods/ITEMS/mcl_monster_eggs/init.lua +++ b/mods/ITEMS/mcl_monster_eggs/init.lua @@ -25,18 +25,18 @@ local register_block = function(subname, description, tiles, is_ground_content) is_ground_content = false, sounds = mcl_sounds.node_sound_stone_defaults(), after_dig_node = spawn_silverfish, - _doc_items_longdesc = S("A monster egg is a block from which a silverfish will pop out when it is broken. It looks identical to its “normal” counterpart."), + _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_blast_resistance = 3.75, }) end -- Register all the monster egg blocks -register_block("stone", S("Stone Monster Egg"), {"default_stone.png"}, true) -register_block("cobble", S("Cobblestone Monster Egg"), {"default_cobble.png"}) -register_block("stonebrick", S("Stone Bricks Monster Egg"), {"default_stone_brick.png"}) -register_block("stonebrickcracked", S("Cracked Stone Bricks Monster Egg"), {"mcl_core_stonebrick_cracked.png"}) -register_block("stonebrickmossy", S("Mossy Stone Bricks Monster Egg"), {"mcl_core_stonebrick_mossy.png"}) -register_block("stonebrickcarved", S("Chiseled Stone Bricks Monster Egg"), {"mcl_core_stonebrick_carved.png"}) +register_block("stone", S("Infested Stone"), {"default_stone.png"}, true) +register_block("cobble", S("Infested Cobblestone"), {"default_cobble.png"}) +register_block("stonebrick", S("Infested Stone Bricks"), {"default_stone_brick.png"}) +register_block("stonebrickcracked", S("Infested Cracked Stone Bricks"), {"mcl_core_stonebrick_cracked.png"}) +register_block("stonebrickmossy", S("Infested Mossy Stone Bricks"), {"mcl_core_stonebrick_mossy.png"}) +register_block("stonebrickcarved", S("Infested Chiseled Stone Bricks"), {"mcl_core_stonebrick_carved.png"})