aboutsummaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-06-02 17:21:37 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-06-02 17:21:37 +0800
commit7d90a03b2e18472053899e3776e16e9843069575 (patch)
tree471c9afe340955aa0c851336ec2a632a00469786 /features
parent506413254cd14575edf456350ab49b294f950cca (diff)
downloadSoopyV2-7d90a03b2e18472053899e3776e16e9843069575.tar.gz
SoopyV2-7d90a03b2e18472053899e3776e16e9843069575.tar.bz2
SoopyV2-7d90a03b2e18472053899e3776e16e9843069575.zip
+ change colors of current slayer exp overlay to match rest of gui elements
Diffstat (limited to 'features')
-rw-r--r--features/slayers/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/features/slayers/index.js b/features/slayers/index.js
index be5f583..46fb1a6 100644
--- a/features/slayers/index.js
+++ b/features/slayers/index.js
@@ -33,7 +33,7 @@ class Slayers extends Feature {
this.slayerXpGuiElement = new ToggleSetting("Render the xp of your current slayer on your screen", "This will help you to know how much xp u have now w/o looking in chat", true, "slayer_xp_hud", this).contributor("EmeraldMerchant");
this.slayerXpElement = new HudTextElement()
- .setText("&aSlayer&7> &fLoading...")
+ .setText("&6Slayer&7> &fLoading...")
.setToggleSetting(this.slayerXpGuiElement)
.setLocationSetting(new LocationSetting("Slayer Xp Location", "Allows you to edit the location of you current slayer xp", "slayer_xp_location", this, [10, 50, 1, 1]).requires(this.slayerXpGuiElement).editTempText("&aEnderman&7> &d&l2,147,483,647 XP").contributor("EmeraldMerchant"));
this.hudElements.push(this.slayerXpElement);
@@ -293,8 +293,8 @@ class Slayers extends Feature {
this.todoE = this.todoE2;
this.todoE2 = [];
- if (this.slayerXpGuiElement.getValue()) {
- this.slayerXpElement.setText(`&a${this.lastSlayerType}&7> &d${numberWithCommas(this.slayerExp[this.lastSlayerType])} XP`);
+ if (this.slayerXpGuiElement.getValue() && this.lastSlayerType) {
+ this.slayerXpElement.setText(`&6${this.lastSlayerType}&7> &f${numberWithCommas(this.slayerExp[this.lastSlayerType])} XP`);
}
if (this.emanBoss && this.emanBoss.getEntity()[f.isDead]) {