From 51d105a30b16cda9b3f8796e8853491dfe319747 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 9 Nov 2020 12:37:33 -0500 Subject: [PATCH] chat commands: format lp score --- .../client/plugins/chatcommands/ChatCommandsPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java index 7574803fb1..c4c8f715cd 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java @@ -1311,7 +1311,7 @@ public class ChatCommandsPlugin extends Plugin .append(minigame.getName()) .append(" Score: ") .append(ChatColorType.HIGHLIGHT) - .append(Integer.toString(score)); + .append(String.format("%,d", score)); int rank = hiscoreSkill.getRank(); if (rank != -1)