diff options
| -rw-r--r-- | common/darkknight/jewelrycraft/item/ItemThiefGloves.java | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/common/darkknight/jewelrycraft/item/ItemThiefGloves.java b/common/darkknight/jewelrycraft/item/ItemThiefGloves.java index ff934a9..5edd297 100644 --- a/common/darkknight/jewelrycraft/item/ItemThiefGloves.java +++ b/common/darkknight/jewelrycraft/item/ItemThiefGloves.java @@ -4,12 +4,6 @@ import java.util.Iterator; import java.util.List; import java.util.Random; -import org.lwjgl.input.Keyboard; - -import cpw.mods.fml.common.FMLCommonHandler; -import cpw.mods.fml.relauncher.ReflectionHelper; -import cpw.mods.fml.relauncher.Side; - import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.passive.EntityVillager; @@ -20,6 +14,12 @@ import net.minecraft.util.EnumChatFormatting; import net.minecraft.village.MerchantRecipe; import net.minecraft.village.MerchantRecipeList; +import org.lwjgl.input.Keyboard; + +import cpw.mods.fml.common.FMLCommonHandler; +import cpw.mods.fml.relauncher.ReflectionHelper; +import cpw.mods.fml.relauncher.Side; + public class ItemThiefGloves extends ItemBase { public Random rand; @@ -74,6 +74,7 @@ public class ItemThiefGloves extends ItemBase } } + @Override @SuppressWarnings("unchecked") public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean par4) { @@ -101,7 +102,7 @@ public class ItemThiefGloves extends ItemBase public static String additionalInfoInstructions() { - String message = "§oPress §b<SHIFT>§7§o for more information."; + String message = "\247oPress \247b<SHIFT>\2477\247o for more information."; return message; } |
