返回提交历史
Modified
static/webui/script.js
+1
-1
XFEstudio/SpaceNinjaServer
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 <animan8000@noreply.localhost> Co-committed-by: Animan8000 <animan8000@noreply.localhost>
4fa07a13
代码差异
1 个文件
+1
-1
@@ -2269,7 +2269,7 @@ function addMissingEquipment(categories) {
2269
2269
) {
2270
2270
if (!webUiModularWeapons.includes(elm.getAttribute("data-key"))) {
2271
2271
let ItemCount = 1;
2272
if (category == "ShipDecorations") ItemCount = 100;
2272
if (category == "ShipDecorations") ItemCount = 999999;
2273
2273
requests.push({ ItemType: elm.getAttribute("data-key"), ItemCount });
2274
2274
}
2275
2275
}