From 25aa6b50d6989efe7ee8b5214f1fdac5d2d1f893 Mon Sep 17 00:00:00 2001 From: Minzkraut Date: Sun, 12 Mar 2023 19:14:24 +0100 Subject: [PATCH] CONST: Fix patreon tier constants Whale tier (5) had the wrong index and the object was never actually exported. --- config/constants.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/constants.js b/config/constants.js index 8937893..b2966d1 100644 --- a/config/constants.js +++ b/config/constants.js @@ -100,7 +100,7 @@ const PATREON = { daily: 1 } }, - 4 : { + 5 : { modifiers: { drops: 4, claims: 14, @@ -117,4 +117,5 @@ exports.QUALITY_NAMES = QUALITY_NAMES; exports.CURRENCY_SYMBOLS = CURRENCY_SYMBOLS; exports.QUALITY_SYMBOLS = QUALITY_SYMBOLS; exports.CURRENCY_NAMES = CURRENCY_NAMES; -exports.QUALITY_VALUES = QUALITY_VALUES; \ No newline at end of file +exports.QUALITY_VALUES = QUALITY_VALUES; +exports.PATREON = PATREON; \ No newline at end of file