diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-19 19:29:29 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-19 19:29:29 +0800 |
commit | f1dfd307ee4672a050af173bef7c33b5e3752a6c (patch) | |
tree | f1a515185d57fbe548d0e7b3c0e1d5365860a569 /features | |
parent | 4b185a3d19caa3c53f969730530714824f19eb32 (diff) | |
download | SoopyV2-f1dfd307ee4672a050af173bef7c33b5e3752a6c.tar.gz SoopyV2-f1dfd307ee4672a050af173bef7c33b5e3752a6c.tar.bz2 SoopyV2-f1dfd307ee4672a050af173bef7c33b5e3752a6c.zip |
+ how to remove soopyv2 message if u dont have forge mod
Diffstat (limited to 'features')
-rw-r--r-- | features/globalSettings/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index e4460b0..85a1dc1 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -117,7 +117,7 @@ class GlobalSettings extends Feature { this.registerCommand("lobbyusers", () => { fetch("http://soopymc.my.to/api/soopyv2/lobbyusers/" + this.FeatureManager.features["dataLoader"].class.stats.Server).json(data => { ChatLib.chat("&c" + ChatLib.getChatBreak("-")) - ChatLib.chat(this.FeatureManager.messagePrefix + "&7(" + data.data + ")&r Lobby soopyv2 users:") + ChatLib.chat(this.FeatureManager.messagePrefix + "&7(" + data.data.length + ")&r Lobby soopyv2 users:") data.data.forEach(name => { ChatLib.chat("&7 - &r" + name) }) |