fix: handle high spoofed mastery rank plus noDailyStandingLimits #1201

Merged
Sainan merged 1 commits from full-bar into main 2025-03-16 04:33:12 -07:00

View File

@ -246,8 +246,9 @@ export const getInventoryResponse = async (
} }
if (config.noDailyStandingLimits) { if (config.noDailyStandingLimits) {
const spoofedDailyAffiliation = Math.max(999_999, 16000 + inventoryResponse.PlayerLevel * 500);
for (const key of allDailyAffiliationKeys) { for (const key of allDailyAffiliationKeys) {
inventoryResponse[key] = 999_999; inventoryResponse[key] = spoofedDailyAffiliation;
} }
} }