From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sun, 29 Jun 2025 14:33:58 +0000 (+0200) Subject: fix ItemSlotsSystem debug assert (#38655) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=4bd437272f9c69e8ce9fe830ae55a95b1021eebf;p=space-station-14.git fix ItemSlotsSystem debug assert (#38655) --- diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index b3eb4b23c2..88e6ca44dc 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -395,7 +395,7 @@ namespace Content.Shared.Containers.ItemSlots if (!Resolve(user, ref hands, false)) return false; - if (!_handsSystem.TryGetActiveItem((uid, hands), out var held)) + if (!_handsSystem.TryGetActiveItem((user, hands), out var held)) return false; if (!CanInsert(uid, held.Value, user, slot))