From 4fa07a131919062d8d4d4464a36f697749ab6f30 Mon Sep 17 00:00:00 2001 From: Animan8000 Date: Thu, 18 Sep 2025 01:12:44 -0700 Subject: [PATCH] chore(webui): give the user higher quantity of ShipDecorations (#2791) 100 is way too low. 999999 should be enough (was also the same number IIRC from the previous ShipDecorations cheat) for everything probably Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2791 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: Animan8000 Co-committed-by: Animan8000 --- 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 }); } }