From 197d97e2170b05e4772548fb5ca4e9b9e49c1163 Mon Sep 17 00:00:00 2001 From: Matt Caughey Date: Wed, 29 Jan 2014 07:58:13 -0500 Subject: [PATCH] Tweaked biome radar text --- .../java/biomesoplenty/common/items/ItemBiomeFinder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/biomesoplenty/common/items/ItemBiomeFinder.java b/src/main/java/biomesoplenty/common/items/ItemBiomeFinder.java index b167f6044..3b60c710c 100644 --- a/src/main/java/biomesoplenty/common/items/ItemBiomeFinder.java +++ b/src/main/java/biomesoplenty/common/items/ItemBiomeFinder.java @@ -185,14 +185,14 @@ public class ItemBiomeFinder extends Item if (biome != null) { - infoList.add(biome.biomeName); + infoList.add("" + EnumChatFormatting.BOLD + "Target: " + EnumChatFormatting.RESET + biome.biomeName); if (itemStack.getTagCompound().hasKey("foundBiome")) { boolean foundBiome = itemStack.getTagCompound().getBoolean("foundBiome"); - if (foundBiome) infoList.add(EnumChatFormatting.DARK_GREEN + "Found biome!"); - else infoList.add(EnumChatFormatting.DARK_GRAY + "Right click to find biome"); + if (foundBiome) infoList.add("" + EnumChatFormatting.DARK_GREEN + EnumChatFormatting.ITALIC + "Found biome!"); + else infoList.add("" + EnumChatFormatting.DARK_GRAY + EnumChatFormatting.ITALIC + "Right click to scan for biome"); } } }