From: lzk <124214523+lzk228@users.noreply.github.com> Date: Sun, 23 Feb 2025 02:01:33 +0000 (+0100) Subject: make opening storage on verb or on interact not silent (#35413) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=b8806759fd176df6d811980d50c856cfe98a5668;p=space-station-14.git make opening storage on verb or on interact not silent (#35413) * make storage make sound * remove Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> --------- Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> --- diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 51ee89c10b..d2fbe26002 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -298,7 +298,7 @@ public abstract class SharedStorageSystem : EntitySystem } else { - OpenStorageUI(uid, args.User, component); + OpenStorageUI(uid, args.User, component, false); } } }; @@ -429,7 +429,7 @@ public abstract class SharedStorageSystem : EntitySystem } else { - OpenStorageUI(uid, args.User, storageComp); + OpenStorageUI(uid, args.User, storageComp, false); } args.Handled = true;