aboutsummaryrefslogtreecommitdiff
path: root/features/changeLogGUI/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'features/changeLogGUI/index.js')
-rw-r--r--features/changeLogGUI/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/features/changeLogGUI/index.js b/features/changeLogGUI/index.js
index 11f0df7..44fc3bf 100644
--- a/features/changeLogGUI/index.js
+++ b/features/changeLogGUI/index.js
@@ -11,6 +11,7 @@ import SoopyMouseClickEvent from "../../../guimanager/EventListener/SoopyMouseCl
import ProgressBar from "../../../guimanager/GuiElement/ProgressBar"
import SoopyRenderEvent from "../../../guimanager/EventListener/SoopyRenderEvent"
import { fetch } from "../../utils/networkUtils";
+import { numberWithCommas } from "../../utils/numberUtils";
const File = Java.type("java.io.File")
const URL = Java.type("java.net.URL");
const PrintStream = Java.type("java.io.PrintStream");
@@ -232,7 +233,7 @@ class ChangelogPage extends GuiPage {
this.changelogArea.addChild(changes)
- changes.setText("# __" + data.version + "__" + (data.versionId === this.currVersionId ? " §7Current" : "") + "\n" + data.description)
+ changes.setText("# __" + data.version + "__" + (data.versionId === this.currVersionId ? " §7Current (" : " §7(") + numberWithCommas(data.users || 0) + " using)" + "\n" + data.description)
height += changes.getHeight()