diff options
author | Lulonaut <67191924+Lulonaut@users.noreply.github.com> | 2021-12-29 12:07:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-29 12:07:16 +0100 |
commit | c52df77d33d4dd7093ee8f06d3d4489a07447a0c (patch) | |
tree | bcea92a073c688efa411c801ec60b8c3358faef7 | |
parent | 3d8563712d30f8ae7eff583430b4d02eaf3d048e (diff) | |
download | NotEnoughUpdates-c52df77d33d4dd7093ee8f06d3d4489a07447a0c.tar.gz NotEnoughUpdates-c52df77d33d4dd7093ee8f06d3d4489a07447a0c.tar.bz2 NotEnoughUpdates-c52df77d33d4dd7093ee8f06d3d4489a07447a0c.zip |
shorter message (#44)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java b/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java index e7c55d77..4b4b6c31 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java @@ -74,7 +74,7 @@ public class ItemPriceInformation { long lastUpdate = NotEnoughUpdates.INSTANCE.manager.auctionManager.getLastLowestBinUpdateTime(); //check if info is older than 10 minutes if (currentTime - lastUpdate > 600 * 1000) { - tooltip.add(EnumChatFormatting.RED + "[NEU] Price info is outdated by more than 10 minutes.\nIt will updated again as soon as the server can be reached again."); + tooltip.add(EnumChatFormatting.RED + "[NEU] Price info is outdated."); } } |