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()) {