diff --git a/Patches/WeaponModdingPatches.cs b/Patches/WeaponModdingPatches.cs index 5f88d07..f7e5f4b 100644 --- a/Patches/WeaponModdingPatches.cs +++ b/Patches/WeaponModdingPatches.cs @@ -487,7 +487,7 @@ public static class WeaponModdingPatches } Item rootItem = itemAddress.GetRootItemNotEquipment(); - if (rootItem is not Weapon weapon) + if (rootItem is not Weapon weapon || weapon.CurrentAddress == null) { return true; }