chore(webui): give the user higher quantity of ShipDecorations #2791

Merged
Sainan merged 1 commits from :animan8000-patch-1 into main 2025-09-18 01:12:45 -07:00

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