From 9fd56ffd7045bb616f5d6103ec20b10fadc8b6bb Mon Sep 17 00:00:00 2001 From: PRO100KatYT <67335438+PRO100KatYT@users.noreply.github.com> Date: Tue, 9 Jul 2024 09:32:11 +0200 Subject: [PATCH] v30.20+ Catalog Llama icons fix --- structure/storefront.js | 3 +++ 1 file changed, 3 insertions(+) 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); })