Skip to content

Commit

Permalink
make opening storage on verb or on interact not silent (space-wizards…
Browse files Browse the repository at this point in the history
…#35413)

* make storage make sound

* remove

Co-authored-by: Winkarst <[email protected]>

---------

Co-authored-by: Winkarst <[email protected]>
  • Loading branch information
2 people authored and Alwayswannahunt committed Mar 4, 2025
1 parent d8645ad commit 70b3c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent<
}
else
{
OpenStorageUI(uid, args.User, component);
OpenStorageUI(uid, args.User, component, false);
}
}
};
Expand Down Expand Up @@ -429,7 +429,7 @@ private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInW
}
else
{
OpenStorageUI(uid, args.User, storageComp);
OpenStorageUI(uid, args.User, storageComp, false);
}

args.Handled = true;
Expand Down

0 comments on commit 70b3c2a

Please sign in to comment.