CONST: Fix patreon tier constants

Whale tier (5) had the wrong index and the
object was never actually exported.
This commit is contained in:
2023-03-12 19:14:24 +01:00
parent cb01327c7d
commit 25aa6b50d6

View File

@@ -100,7 +100,7 @@ const PATREON = {
daily: 1 daily: 1
} }
}, },
4 : { 5 : {
modifiers: { modifiers: {
drops: 4, drops: 4,
claims: 14, claims: 14,
@@ -118,3 +118,4 @@ exports.CURRENCY_SYMBOLS = CURRENCY_SYMBOLS;
exports.QUALITY_SYMBOLS = QUALITY_SYMBOLS; exports.QUALITY_SYMBOLS = QUALITY_SYMBOLS;
exports.CURRENCY_NAMES = CURRENCY_NAMES; exports.CURRENCY_NAMES = CURRENCY_NAMES;
exports.QUALITY_VALUES = QUALITY_VALUES; exports.QUALITY_VALUES = QUALITY_VALUES;
exports.PATREON = PATREON;