From eefefcc525b39da589591f17c9add3338d5a0e48 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 16 Aug 2022 19:00:50 +0800 Subject: make pickup log white by default --- features/globalSettings/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features') 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 = {}; -- cgit