diff --git a/Content.Client/Inventory/ClientInventorySystem.cs b/Content.Client/Inventory/ClientInventorySystem.cs index 1b63e52612..52dfb92c67 100644 --- a/Content.Client/Inventory/ClientInventorySystem.cs +++ b/Content.Client/Inventory/ClientInventorySystem.cs @@ -186,9 +186,9 @@ namespace Content.Client.Inventory if(!TryGetSlotContainer(uid, slot, out var containerSlot, out var slotDef, inventoryComponent)) return; - _itemSlotManager.HoverInSlot(button, heldEntity, - CanEquip(uid, heldEntity, slot, out _, slotDef, inventoryComponent) && - containerSlot.CanInsert(heldEntity, EntityManager)); + _itemSlotManager.HoverInSlot(button, heldEntity.Value, + CanEquip(uid, heldEntity.Value, slot, out _, slotDef, inventoryComponent) && + containerSlot.CanInsert(heldEntity.Value, EntityManager)); } private void HandleSlotButtonPressed(EntityUid uid, string slot, ItemSlotButton button,