ctrl-click working

This commit is contained in:
Tyfon
2024-06-19 18:13:40 -07:00
parent 7fc1c0068b
commit 58b35d32fc
4 changed files with 144 additions and 33 deletions

View File

@@ -95,7 +95,10 @@ namespace UIFixes
.Where(i => insurance.ItemTypeAvailableForInsurance(i) && !insurance.InsuredItems.Contains(i))
.Count();
____text.text += " (x" + count + ")";
if (count > 0)
{
____text.text += " (x" + count + ")";
}
}
}
}