From b6181858a0c780308e49a7d4d1da635e7035eb33 Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Sat, 15 Mar 2025 10:07:34 -0700 Subject: [PATCH] chore: changed noDailyStandingLimits to 999.999.999 to avoid potential confusion when having MR 65K+ When you have a very high mastery rank, the user technically has an even higher cap (higher than 999.999) and it doesn't cover the entire standing cap in-game visually, which may look a little confusing to the end user. It would also be consistent with the infinite plat & credits amount. I know, I know, technically really pointless but that's what I mean and why I preferred to change: Before: https://cdn.discordapp.com/attachments/1350514154959667224/1350514204574093474/BF0C5B98-23BB-42F9-975A-986C664C1FF8.png?ex=67d703dd&is=67d5b25d&hm=63ed4adc582cc1171a9500e8053b8c33262006937bb98389f8316e083cac1298& https://cdn.discordapp.com/attachments/1350514154959667224/1350514220503924786/3A9E9851-3DBE-4A2B-BEF4-DDA5EE3EA6C4.png?ex=67d703e1&is=67d5b261&hm=4ef8f4ffae4663921094c732c863084cbe342c677b26191a4af01d4cb7e25f23& After: https://cdn.discordapp.com/attachments/1350514154959667224/1350514254926581891/7756A1B4-AE30-49CF-9E16-AE3C37D25CB1.png?ex=67d703e9&is=67d5b269&hm=7c29987cc87db3d7657eaab53073cecd66818d48a2c7e980594c4a3029f6e907& https://cdn.discordapp.com/attachments/1350514154959667224/1350514292121796608/B2015634-87B0-4E28-B66D-4B6A206C0BE6.png?ex=67d703f2&is=67d5b272&hm=fda40dee88c29872e40c5cdb8e5aa3453374288dd2de3274d3df75efafa24455& --- src/controllers/api/inventoryController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/inventoryController.ts b/src/controllers/api/inventoryController.ts index 40d13d4c..2e64c2c0 100644 --- a/src/controllers/api/inventoryController.ts +++ b/src/controllers/api/inventoryController.ts @@ -247,7 +247,7 @@ export const getInventoryResponse = async ( if (config.noDailyStandingLimits) { for (const key of allDailyAffiliationKeys) { - inventoryResponse[key] = 999_999; + inventoryResponse[key] = 999_999_999; } }