aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonSolvers
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-19 00:16:51 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-19 00:16:51 +0800
commit51ae30d794ffd362779b44420c305871d63891ba (patch)
tree187bc27fb862a037c5388140a5acefce5455d219 /features/dungeonSolvers
parentc87c6f2703d689375518f54905ae10e2edb42d41 (diff)
downloadSoopyV2-51ae30d794ffd362779b44420c305871d63891ba.tar.gz
SoopyV2-51ae30d794ffd362779b44420c305871d63891ba.tar.bz2
SoopyV2-51ae30d794ffd362779b44420c305871d63891ba.zip
optimisations to threads
Diffstat (limited to 'features/dungeonSolvers')
-rw-r--r--features/dungeonSolvers/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js
index 51a9ce4..c45df32 100644
--- a/features/dungeonSolvers/index.js
+++ b/features/dungeonSolvers/index.js
@@ -65,7 +65,7 @@ class DungeonSolvers extends Feature {
.setToggleSetting(this.runSpeedRates)
.setLocationSetting(new LocationSetting("Run speed and exp rates location", "Allows you to edit the location of the information", "run_speed_rates_location", this, [10, 100, 1, 1]).requires(this.runSpeedRates).editTempText("&6Run speed&7> &f4:30\n&6Exp/hour&7> &f1,234,567\n&6Runs/hour&7> &f17"));
- this.scoreCalculation = new ToggleSetting("Show score calculation", "", true, "run_score_calc", this);
+ this.scoreCalculation = new ToggleSetting("Show score calculation", "NOTE: doesent include mimic or spirit pet yet", true, "run_score_calc", this);
this.scoreElement = new HudTextElement().setToggleSetting(this.scoreCalculation).setLocationSetting(new LocationSetting("Score calculation location", "Allows you to edit the location of the score calc", "score_calc_location", this, [10, 130, 1, 1]).requires(this.scoreCalculation).editTempText("Editing temp text here"));
this.hudElements.push(this.runSpeedRatesElement);