runelite-client: show runepouch runecount in thousands

It is too hard to read with >3 characters
This commit is contained in:
Adam
2017-10-13 08:09:24 -04:00
parent 9e7e713d63
commit 9807ed8ccf

View File

@@ -131,8 +131,8 @@ public class RunepouchOverlay extends Overlay
return null;
}
private static String formatNumber(int var0)
private static String formatNumber(int amount)
{
return var0 < 10000 ? String.valueOf(var0) : var0 / 1000 + "K";
return amount < 1000 ? String.valueOf(amount) : amount / 1000 + "K";
}
}