From dac7a500302047f6617bc9d4741b2df28571a007 Mon Sep 17 00:00:00 2001 From: Marco Oliveira Date: Thu, 4 Nov 2021 13:22:14 -0300 Subject: [PATCH] [12.70] Premium players can store 15,000 in depot --- config.lua.dist | 2 +- src/configmanager.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.lua.dist b/config.lua.dist index 3d8c8c275c..9c793f55ac 100644 --- a/config.lua.dist +++ b/config.lua.dist @@ -102,7 +102,7 @@ showPlayerLogInConsole = true vipFreeLimit = 20 vipPremiumLimit = 100 depotFreeLimit = 2000 -depotPremiumLimit = 10000 +depotPremiumLimit = 15000 -- World Light -- NOTE: if defaultWorldLight is set to true the world light algorithm will diff --git a/src/configmanager.cpp b/src/configmanager.cpp index aec74f3118..b310c186bf 100644 --- a/src/configmanager.cpp +++ b/src/configmanager.cpp @@ -291,7 +291,7 @@ bool ConfigManager::load() integer[VIP_FREE_LIMIT] = getGlobalNumber(L, "vipFreeLimit", 20); integer[VIP_PREMIUM_LIMIT] = getGlobalNumber(L, "vipPremiumLimit", 100); integer[DEPOT_FREE_LIMIT] = getGlobalNumber(L, "depotFreeLimit", 2000); - integer[DEPOT_PREMIUM_LIMIT] = getGlobalNumber(L, "depotPremiumLimit", 10000); + integer[DEPOT_PREMIUM_LIMIT] = getGlobalNumber(L, "depotPremiumLimit", 15000); expStages = loadXMLStages(); if (expStages.empty()) {