summaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-25 00:14:58 +0100
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2015-04-25 00:14:58 +0100
commitb3c0834572d316d40153e2110d2b6f42b7ba27b9 (patch)
treedcb2799440765b199745b377b320d8af86da2652 /src/main/java
parent84d260f4d50b4fc91c7263e87981170941d8da70 (diff)
Small change to test stuff
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/darkknight/jewelrycraft/item/ItemGoldObj.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/item/ItemGoldObj.java b/src/main/java/darkknight/jewelrycraft/item/ItemGoldObj.java
index 929d442..41ac9ec 100644
--- a/src/main/java/darkknight/jewelrycraft/item/ItemGoldObj.java
+++ b/src/main/java/darkknight/jewelrycraft/item/ItemGoldObj.java
@@ -55,7 +55,7 @@ public class ItemGoldObj extends Item
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean displayInfo)
{
if (displayInfo)
- if(JewelryNBT.item(stack).getItem() instanceof ItemFood) list.add(EnumChatFormatting.DARK_PURPLE + "It's made of solid gold. How are you suppose to eat this?");
+ if(JewelryNBT.item(stack).getItem() instanceof ItemFood) list.add(EnumChatFormatting.DARK_PURPLE + "It's made of solid gold! How are you suppose to eat this?");
else list.add(EnumChatFormatting.DARK_PURPLE + "Shiny, but useless :(");
}
}