From faa4508b655472529b41ec5f2baa2ac42e26d36a Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sun, 6 Jul 2025 16:42:13 -0700 Subject: [PATCH] Fix storage voice control bug after handssystem refactor (#38810) --- Content.Server/VoiceTrigger/StorageVoiceControlSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/VoiceTrigger/StorageVoiceControlSystem.cs b/Content.Server/VoiceTrigger/StorageVoiceControlSystem.cs index 1755c6df08..81bbd48a0d 100644 --- a/Content.Server/VoiceTrigger/StorageVoiceControlSystem.cs +++ b/Content.Server/VoiceTrigger/StorageVoiceControlSystem.cs @@ -40,7 +40,7 @@ public sealed class StorageVoiceControlSystem : EntitySystem return; // If the player has something in their hands, try to insert it into the storage - if (_hands.TryGetActiveItem(ent.Owner, out var activeItem)) + if (_hands.TryGetActiveItem(args.Source, out var activeItem)) { // Disallow insertion and provide a reason why if the person decides to insert the item into itself if (ent.Owner.Equals(activeItem.Value)) -- 2.51.2