From edddc80bd8203cf679795d9188feef47710e0229 Mon Sep 17 00:00:00 2001 From: Sainan Date: Wed, 12 Feb 2025 18:14:59 -0800 Subject: [PATCH] fix(webui): don't give legendary cores with "add missing mods" (#953) Closes #952 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/953 --- static/webui/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/webui/script.js b/static/webui/script.js index a7afa25da..4d62c4a31 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -1023,6 +1023,7 @@ function doAddAllMods() { for (const child of document.getElementById("datalist-mods").children) { modsAll.add(child.getAttribute("data-key")); } + modsAll.delete("/Lotus/Upgrades/Mods/Fusers/LegendaryModFuser"); revalidateAuthz(() => { const req = $.get("/api/inventory.php?" + window.authz + "&xpBasedLevelCapDisabled=1");