diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-02 12:48:21 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-02 12:48:21 +0800 |
commit | 74dea92c426b91bb5520122d4dccc64fd6e46d1c (patch) | |
tree | 4c5f8023478bcdb2b344e8f066a768f9767cfed6 /features | |
parent | 66b356e8fdb1866293729d6404001facc2820832 (diff) | |
download | SoopyV2-74dea92c426b91bb5520122d4dccc64fd6e46d1c.tar.gz SoopyV2-74dea92c426b91bb5520122d4dccc64fd6e46d1c.tar.bz2 SoopyV2-74dea92c426b91bb5520122d4dccc64fd6e46d1c.zip |
asd?
Diffstat (limited to 'features')
-rw-r--r-- | features/cosmetics/index.js | 1 | ||||
-rw-r--r-- | features/networthGUI/index.js | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/features/cosmetics/index.js b/features/cosmetics/index.js index 1eb6ff8..4f1964c 100644 --- a/features/cosmetics/index.js +++ b/features/cosmetics/index.js @@ -123,7 +123,6 @@ class Cosmetics extends Feature { step(){ this.scanForNewCosmetics() - console.log(this.loadedCosmetics.length) } scanForNewCosmetics(){ this.loadCosmeticsForPlayer(Player) diff --git a/features/networthGUI/index.js b/features/networthGUI/index.js index 62433d2..d0f1683 100644 --- a/features/networthGUI/index.js +++ b/features/networthGUI/index.js @@ -114,7 +114,7 @@ class NetworthPage extends GuiPage { let box = new SoopyBoxElement().setLocation(i%2===0?0:0.525, 0.45 + Math.floor(i/2)*0.35, 0.475, 0.25) box.addChild(new SoopyMarkdownElement().setLocation(0,0,1,1).setText(data.items.filter(i=>i.name).splice(0,5).map(a=>{ - let name = (a.name.startsWith("§f") || a.name.startsWith("[Lvl "))?a.name.replace("§f","§7"):a.name + let name = (a.name.startsWith("§f") || a.name.startsWith("§7[Lvl "))?a.name.replace("§f","§7"):a.name return "§0" + name + "§0: §2$" + numberWithCommas(Math.round(a.p)).replace(/,/g, "§7,§2") }).join("\n"))) |