Add Nothing to certain offhands.

This commit is contained in:
Ottermandias 2023-08-28 12:17:15 +02:00
parent b6422d08f4
commit abcb1a6222
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ public sealed class WeaponCombo : FilterComboCache<EquipItem>
if (!items.ItemService.AwaitedService.TryGetValue(type, out var list))
return Array.Empty<EquipItem>();
if (type.ToSlot() is EquipSlot.OffHand && !type.IsOffhandType())
if (type.AllowsNothing())
return list.OrderBy(e => e.Name).Prepend(ItemManager.NothingItem(type)).ToList();
return list.OrderBy(e => e.Name).ToList();