diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-05-28 10:00:15 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-05-28 10:00:15 +0800 |
commit | d017ab83bb7ffbc10e7cde0014116464c725f37f (patch) | |
tree | db53598b784326f884b2bfb5c79e0f135dfef044 /features/dungeonSolvers | |
parent | 83036d85a38729adf8fad5bc9bf38a06c183adf0 (diff) | |
download | SoopyV2-d017ab83bb7ffbc10e7cde0014116464c725f37f.tar.gz SoopyV2-d017ab83bb7ffbc10e7cde0014116464c725f37f.tar.bz2 SoopyV2-d017ab83bb7ffbc10e7cde0014116464c725f37f.zip |
+ fix gemstone $/h from when i made it show both hours and minuites (i love not testing updates BatChamp)
Diffstat (limited to 'features/dungeonSolvers')
-rw-r--r-- | features/dungeonSolvers/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 5b675a7..54c0849 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -70,7 +70,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", "NOTE: doesent include mimic or spirit pet yet", true, "run_score_calc", this); + this.scoreCalculation = new ToggleSetting("Show score calculation", "", 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("&dScore: 120\n&aS+ ??\n&aS ??")); this.hudElements.push(this.runSpeedRatesElement); |