diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-16 19:00:50 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-16 19:00:50 +0800 |
commit | eefefcc525b39da589591f17c9add3338d5a0e48 (patch) | |
tree | 85eebe61c2527b041003846525de9fd0c3b97a7f /features | |
parent | fad405ad83014a09426aaceb1ef06fd0b01b2c82 (diff) | |
download | SoopyV2-eefefcc525b39da589591f17c9add3338d5a0e48.tar.gz SoopyV2-eefefcc525b39da589591f17c9add3338d5a0e48.tar.bz2 SoopyV2-eefefcc525b39da589591f17c9add3338d5a0e48.zip |
make pickup log white by default
Diffstat (limited to 'features')
-rw-r--r-- | features/globalSettings/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 671f59a..04ac413 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -379,7 +379,7 @@ class GlobalSettings extends Feature { return } //positive and negative prefix colors - if (todoText.length < max) todoText.push((this.todoPickUpLog[i].Amount > 0 ? "&r&a+ " : "&r&c- ") + Math.abs(this.todoPickUpLog[i].Amount) + "x &r" + i) + if (todoText.length < max) todoText.push((this.todoPickUpLog[i].Amount > 0 ? "&r&a+ " : "&r&c- ") + Math.abs(this.todoPickUpLog[i].Amount) + "x &f" + i) }) } else { this.todoPickUpLog = {}; |