aboutsummaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
Diffstat (limited to 'features')
-rw-r--r--features/cosmetics/index.js1
-rw-r--r--features/networthGUI/index.js2
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")))