From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sun, 6 Jul 2025 23:42:13 +0000 (-0700) Subject: Fix storage voice control bug after handssystem refactor (#38810) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=faa4508b655472529b41ec5f2baa2ac42e26d36a;p=space-station-14.git Fix storage voice control bug after handssystem refactor (#38810) --- 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))