chore(webui): give the user higher quantity of ShipDecorations
All checks were successful
Build / build (pull_request) Successful in 1m28s

100 is way too low. 999999 should be enough (was also the same number IIRC from the previous ShipDecorations cheat) for everything probably
This commit is contained in:
Animan8000 2025-09-17 09:59:02 -07:00
parent 367455baaa
commit a7daf66bed

View File

@ -2269,7 +2269,7 @@ function addMissingEquipment(categories) {
) { ) {
if (!webUiModularWeapons.includes(elm.getAttribute("data-key"))) { if (!webUiModularWeapons.includes(elm.getAttribute("data-key"))) {
let ItemCount = 1; let ItemCount = 1;
if (category == "ShipDecorations") ItemCount = 100; if (category == "ShipDecorations") ItemCount = 999999;
requests.push({ ItemType: elm.getAttribute("data-key"), ItemCount }); requests.push({ ItemType: elm.getAttribute("data-key"), ItemCount });
} }
} }