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
}
},
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;
exports.QUALITY_VALUES = QUALITY_VALUES;
exports.PATREON = PATREON;