From 49daf74069df0a2c762ad9abb763ce6bff9ace79 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C4=81da?= Date: Thu, 28 Aug 2025 11:54:06 -0500 Subject: [PATCH] Fix audio mispredict when quick inserting (#39930) surprising Co-authored-by: iaada --- Content.Shared/Interaction/SmartEquipSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Interaction/SmartEquipSystem.cs b/Content.Shared/Interaction/SmartEquipSystem.cs index da79fc1e69..553a4475cb 100644 --- a/Content.Shared/Interaction/SmartEquipSystem.cs +++ b/Content.Shared/Interaction/SmartEquipSystem.cs @@ -150,7 +150,7 @@ public sealed class SmartEquipSystem : EntitySystem } _hands.TryDrop((uid, hands), hands.ActiveHandId!); - _storage.Insert(slotItem, handItem.Value, out var stacked, out _); + _storage.Insert(slotItem, handItem.Value, out var stacked, out _, user: uid); // if the hand item stacked with the things in inventory, but there's no more space left for the rest // of the stack, place the stack back in hand rather than dropping it on the floor -- 2.51.2