diff --git a/structure/storefront.js b/structure/storefront.js index 0692dc4..2db79d8 100644 --- a/structure/storefront.js +++ b/structure/storefront.js @@ -14,6 +14,9 @@ express.get("/fortnite/api/storefront/v2/catalog", async (req, res) => { if (memory.build >= 30.10) { catalog = JSON.parse(JSON.stringify(catalog).replace(/"Normal"/g, '"Size_1_x_2"')); } + if (memory.build >= 30.20) { + catalog = JSON.parse(JSON.stringify(catalog).replace(/Game\/Items\/CardPacks\//g, 'SaveTheWorld/Items/CardPacks/')); + } res.json(catalog); })