From a7daf66bed13b53cc193cdf466550fc9c73eb1b1 Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Wed, 17 Sep 2025 09:59:02 -0700 Subject: [PATCH] chore(webui): give the user higher quantity of ShipDecorations 100 is way too low. 999999 should be enough (was also the same number IIRC from the previous ShipDecorations cheat) for everything probably --- static/webui/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/webui/script.js b/static/webui/script.js index 632200bc..84c3676f 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -2269,7 +2269,7 @@ function addMissingEquipment(categories) { ) { if (!webUiModularWeapons.includes(elm.getAttribute("data-key"))) { let ItemCount = 1; - if (category == "ShipDecorations") ItemCount = 100; + if (category == "ShipDecorations") ItemCount = 999999; requests.push({ ItemType: elm.getAttribute("data-key"), ItemCount }); } } -- 2.47.2