From 2c1ec3e7ac7b50b26b95335b4fb7016a88588efc Mon Sep 17 00:00:00 2001 From: micle Date: Sat, 29 May 2021 21:44:32 +0100 Subject: [PATCH] Fixed Straw totem description formatting. --- .../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 55e6b8c..7530cba 100755 --- a/src/main/java/com/micle/totemofreviving/items/StrawTotemItem.java +++ b/src/main/java/com/micle/totemofreviving/items/StrawTotemItem.java @@ -41,7 +41,7 @@ public class StrawTotemItem extends Item { 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.\"")); + tooltip.add(new StringTextComponent( TextFormatting.DARK_GRAY + "" + TextFormatting.ITALIC + "\"Feels kinda funky.\"")); tooltip.add(new StringTextComponent("")); if (InputMappings.isKeyDown(Minecraft.getInstance().getWindow().getWindow(), GLFW.GLFW_KEY_LEFT_SHIFT)) { tooltip.add(new StringTextComponent(TextFormatting.YELLOW + "R-CLICK"));