Various changes and fixes for things that have been bugging me

Removed/flagged unused props
Typo fixes
Use `FirstOrDefault` over direct index access
Log stacktrace on exception inside `CreateWeaponItems`
This commit is contained in:
Chomp
2025-06-08 10:40:40 +01:00
parent 4eac8d90fb
commit 1d5162c761
22 changed files with 88 additions and 88 deletions
@@ -847,9 +847,6 @@ public class InventoryHelper(
var fH = IsVertical(itemLocation) ? iW : iH;
var fW = IsVertical(itemLocation) ? iH : iW;
// Find the ending x coord of container
var fillTo = itemLocation.X + fW;
for (var y = 0; y < fH; y++)
{
try