aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--features/globalSettings/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js
index cb12c4c..185c5c1 100644
--- a/features/globalSettings/index.js
+++ b/features/globalSettings/index.js
@@ -159,7 +159,7 @@ class GlobalSettings extends Feature {
if (Math.abs(i.timeStamp - now) > 5000) {
array.splice(index, 1)
}
- todoText.push((i.Amount > -1 ? "&r&a+ " : "&r&c- ") + Math.abs(i.Amount == 0 ? 1 : i.Amount) + "x &r" + i.itemName)
+ todoText.push((i.Amount > 0 ? "&r&a+ " : "&r&c- ") + Math.abs(i.Amount == 0 ? 1 : i.Amount) + "x &r" + i.itemName)
});
} else {
this.todoPickUpLog = [];