chat commands: comma separate values in several commands

This commit is contained in:
Adam
2021-02-09 13:45:39 -05:00
parent 8d543933c9
commit 7656cafc70

View File

@@ -666,7 +666,7 @@ public class ChatCommandsPlugin extends Plugin
.append(ChatColorType.NORMAL)
.append(" kill count: ")
.append(ChatColorType.HIGHLIGHT)
.append(Integer.toString(kc))
.append(String.format("%,d", kc))
.build();
log.debug("Setting response {}", response);
@@ -748,15 +748,15 @@ public class ChatCommandsPlugin extends Plugin
.append(ChatColorType.NORMAL)
.append("Duel Arena wins: ")
.append(ChatColorType.HIGHLIGHT)
.append(Integer.toString(wins))
.append(String.format("%,d", wins))
.append(ChatColorType.NORMAL)
.append(" losses: ")
.append(ChatColorType.HIGHLIGHT)
.append(Integer.toString(losses))
.append(String.format("%,d", losses))
.append(ChatColorType.NORMAL)
.append(" streak: ")
.append(ChatColorType.HIGHLIGHT)
.append(Integer.toString((winningStreak != 0 ? winningStreak : -losingStreak)))
.append(String.format("%,d", winningStreak != 0 ? winningStreak : -losingStreak))
.build();
log.debug("Setting response {}", response);
@@ -957,7 +957,7 @@ public class ChatCommandsPlugin extends Plugin
.append(ChatColorType.NORMAL)
.append("Barbarian Assault High-level gambles: ")
.append(ChatColorType.HIGHLIGHT)
.append(Integer.toString(gc))
.append(String.format("%,d", gc))
.build();
log.debug("Setting response {}", response);
@@ -1420,7 +1420,7 @@ public class ChatCommandsPlugin extends Plugin
.append(ChatColorType.NORMAL)
.append("Clue scroll (" + level + ")").append(": ")
.append(ChatColorType.HIGHLIGHT)
.append(Integer.toString(quantity));
.append(String.format("%,d", quantity));
if (rank != -1)
{