Skip to content

Commit e7d4a81

Browse files
missing ! caused infinite loop.
1 parent 65182a6 commit e7d4a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HalgarisRPGLoot/WeaponAnalyer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void Analyze()
7474
AllEnchantedItems = AllListItems.Where(e => !e.Resolved.ObjectEffect.IsNull).ToArray();
7575

7676
AllObjectEffects = State.LoadOrder.PriorityOrder.ObjectEffect().WinningOverrides()
77-
.Where(x => x.Name != null).Where(k => k.Name.ToString().EndsWith("FX")) // Excluding Bound Weapon FX Object Effects as they don't do a thing on non bound weapons.
77+
.Where(x => x.Name != null).Where(k => !k.Name.ToString().EndsWith("FX")) // Excluding Bound Weapon FX Object Effects as they don't do a thing on non bound weapons.
7878
.ToDictionary(k => k.FormKey);
7979

8080
AllEnchantments = AllEnchantedItems

0 commit comments

Comments
 (0)