chore(webui): give the user higher quantity of ShipDecorations
All checks were successful
Build / build (pull_request) Successful in 1m28s
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:
parent
367455baaa
commit
a7daf66bed
@ -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 });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user