diff options
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/AbiphoneWarning.java | 2 | ||||
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/BazaarSacksProfit.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/AbiphoneWarning.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/AbiphoneWarning.java index c806feeb..75584662 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/AbiphoneWarning.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/AbiphoneWarning.java @@ -134,7 +134,7 @@ public class AbiphoneWarning extends GuiElement { ); TextRenderUtils.drawStringCenteredScaledMaxWidth( - "Continue removing the contact?", + "Continue removing this contact?", Minecraft.getMinecraft().fontRendererObj, width / 2, height / 2 - 45 + 50, diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/BazaarSacksProfit.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/BazaarSacksProfit.java index c80713a4..51ec28dd 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/BazaarSacksProfit.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/BazaarSacksProfit.java @@ -143,13 +143,13 @@ public class BazaarSacksProfit { float extraPrice = price * amount; String priceFormat = formatter.format(extraPrice); totalPrice += extraPrice; - map.put("§a" + formatter.format(amount) + "§7x §f" + name + " §6" + priceFormat, extraPrice); + map.put("§a" + formatter.format(amount) + "§7x §f" + name + " §7for §6" + priceFormat + " coins", extraPrice); } if (showSellOrderPrice) { event.toolTip.add(4, "§7Sell order price: §6" + formatter.format(totalPrice)); } else { - event.toolTip.add(4, "§7Instantly sell price: §6" + formatter.format(totalPrice)); + event.toolTip.add(4, "§7Instant sell price: §6" + formatter.format(totalPrice)); } event.toolTip.add(4, ""); @@ -164,7 +164,7 @@ public class BazaarSacksProfit { if (!showSellOrderPrice) { event.toolTip.add("§8[Press SHIFT to show sell order price]"); } else { - event.toolTip.add("§8[Press SHIFT to show instantly sell price]"); + event.toolTip.add("§8[Press SHIFT to show instant sell price]"); } } |