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>
This commit is contained in:
lzk
2025-02-23 03:01:33 +01:00
committed by GitHub
parent e6d45961ac
commit b8806759fd

View File

@@ -298,7 +298,7 @@ public abstract class SharedStorageSystem : EntitySystem
} }
else else
{ {
OpenStorageUI(uid, args.User, component); OpenStorageUI(uid, args.User, component, false);
} }
} }
}; };
@@ -429,7 +429,7 @@ public abstract class SharedStorageSystem : EntitySystem
} }
else else
{ {
OpenStorageUI(uid, args.User, storageComp); OpenStorageUI(uid, args.User, storageComp, false);
} }
args.Handled = true; args.Handled = true;