From: Callmore <22885888+Callmore@users.noreply.github.com> Date: Thu, 17 Oct 2024 04:00:52 +0000 (+0100) Subject: Fix saving prefered quick store item locations (#32480) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=7039f87bd41378c1faca1522eddedbd1349e4581;p=space-station-14.git Fix saving prefered quick store item locations (#32480) this was just copypasted without any context wasn't it --- diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5c1e2bcfad..fee4c1a0fb 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -666,7 +666,7 @@ public abstract class SharedStorageSystem : EntitySystem private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionEventArgs args) { - if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item, held: true)) + if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item)) return; SaveItemLocation(storage!, item.Owner);