chore(webui): give the user higher quantity of ShipDecorations (#2791)
All checks were successful
Build Docker image / docker-arm64 (push) Successful in 1m13s
Build Docker image / docker-amd64 (push) Successful in 48s
Build / build (push) Successful in 4m1s

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: #2791
Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com>
Co-authored-by: Animan8000 <animan8000@noreply.localhost>
Co-committed-by: Animan8000 <animan8000@noreply.localhost>
This commit is contained in:
Animan8000 2025-09-18 01:12:44 -07:00 committed by Sainan
parent a3cc7d9f92
commit 4fa07a1319

View File

@ -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 });
}
}