diff --git a/static/webui/script.js b/static/webui/script.js
index 7eabcebe..9d6aab44 100644
--- a/static/webui/script.js
+++ b/static/webui/script.js
@@ -428,7 +428,8 @@ function fetchItemList() {
// Add mods missing in data sources
data.mods.push({
uniqueName: "/Lotus/Upgrades/Mods/Fusers/LegendaryModFuser",
- name: loc("code_legendaryCore")
+ name: loc("code_legendaryCore"),
+ fusionLimit: 0
});
data.mods.push({
uniqueName: "/Lotus/Upgrades/CosmeticEnhancers/Peculiars/CyoteMod",
@@ -1494,7 +1495,9 @@ function updateInventory() {
{
const td = document.createElement("td");
td.textContent = itemMap[item.ItemType]?.name ?? item.ItemType;
- td.innerHTML += " ★ 0/" + maxRank + "";
+ if (maxRank > 0) {
+ td.innerHTML += " ★ 0/" + maxRank + "";
+ }
if (item.ItemCount > 1) {
td.innerHTML +=
" 🗍 " + parseInt(item.ItemCount) + "";