From 5df300dfa6e20f57b38f026bbb8c26cf1e86e340 Mon Sep 17 00:00:00 2001 From: micle Date: Sat, 29 May 2021 21:42:46 +0100 Subject: [PATCH] . --- .../java/com/micle/totemofreviving/items/StrawTotemItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/micle/totemofreviving/items/StrawTotemItem.java b/src/main/java/com/micle/totemofreviving/items/StrawTotemItem.java index 4fa40ae..55e6b8c 100755 --- a/src/main/java/com/micle/totemofreviving/items/StrawTotemItem.java +++ b/src/main/java/com/micle/totemofreviving/items/StrawTotemItem.java @@ -38,7 +38,7 @@ public class StrawTotemItem extends Item { @Override public void appendHoverText(ItemStack stack, World world, List tooltip, ITooltipFlag flag) { super.appendHoverText(stack, world, tooltip, flag); - tooltip.add(new StringTextComponent( TextFormatting.GOLD + "Charges: " + TextFormatting.GRAY + stack.getOrCreateTag().getInt(TAG_CHARGE_AMOUNT))); + tooltip.add(new StringTextComponent(TextFormatting.GOLD + "Charges: " + TextFormatting.GRAY + stack.getOrCreateTag().getInt(TAG_CHARGE_AMOUNT))); tooltip.add(new StringTextComponent(TextFormatting.GOLD + "Target: " + TextFormatting.GRAY + stack.getOrCreateTag().getString(TAG_TARGET_NAME))); tooltip.add(new StringTextComponent(TextFormatting.GOLD + "Fail Chance: " + TextFormatting.GRAY + stack.getOrCreateTag().getInt(TAG_FAIL_CHANCE))); tooltip.add(new StringTextComponent(TextFormatting.ITALIC + "" + TextFormatting.DARK_GRAY + "\"Feels kinda funky.\""));