]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
make opening storage on verb or on interact not silent (#35413)
authorlzk <124214523+lzk228@users.noreply.github.com>
Sun, 23 Feb 2025 02:01:33 +0000 (03:01 +0100)
committerGitHub <noreply@github.com>
Sun, 23 Feb 2025 02:01:33 +0000 (18:01 -0800)
* 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>
Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs

index 51ee89c10b41f8ab9ad1508a70997a2af6772bdb..d2fbe26002287be4d4da7c37060420c35bf2bba8 100644 (file)
@@ -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;