From f902576022b65f87783ae4356817f46f0e739140 Mon Sep 17 00:00:00 2001 From: Bernhard Bonigl Date: Wed, 1 Oct 2014 09:41:44 +0200 Subject: [PATCH] The most important update of the galaxy --- resources/assets/tinker/lang/en_US.lang | 2 ++ .../tconstruct/world/itemblocks/CraftedSoilItemBlock.java | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/resources/assets/tinker/lang/en_US.lang b/resources/assets/tinker/lang/en_US.lang index b367413a75f..ca784165b35 100644 --- a/resources/assets/tinker/lang/en_US.lang +++ b/resources/assets/tinker/lang/en_US.lang @@ -717,6 +717,8 @@ smeltery.drain.tooltip1=Works both as input and output for smeltery.drain.tooltip2=fluids in the Smeltery smeltery.brick.tooltip1=Smeltery structure block smeltery.brick.tooltip2=(Safe for decoration) +#Dear translators, only translate this line if the joke is applicable in your language. +grout.tooltip=I am Grout! gui.smeltery.fuel=Fuel gui.smeltery.emerald=Emeralds: diff --git a/src/main/java/tconstruct/world/itemblocks/CraftedSoilItemBlock.java b/src/main/java/tconstruct/world/itemblocks/CraftedSoilItemBlock.java index f9e52f0ba0a..64673952815 100644 --- a/src/main/java/tconstruct/world/itemblocks/CraftedSoilItemBlock.java +++ b/src/main/java/tconstruct/world/itemblocks/CraftedSoilItemBlock.java @@ -34,6 +34,10 @@ public void addInformation (ItemStack stack, EntityPlayer player, List list, boo { switch (stack.getItemDamage()) { + case 1: + if(StatCollector.canTranslate("grout.tooltip")) + list.add(StatCollector.translateToLocal("grout.tooltip")); + break; case 3: list.add(StatCollector.translateToLocal("craftedsoil1.tooltip")); break;