Fix objects tab not showing nents (#23837)

* Fix objects tab not showing nents

* Fix everything
This commit is contained in:
metalgearsloth
2024-01-10 19:30:20 +11:00
committed by GitHub
parent 7cd1ed24a5
commit 1170121532
6 changed files with 66 additions and 26 deletions

View File

@@ -5,9 +5,9 @@ namespace Content.Shared.Station;
[NetSerializable, Serializable]
public sealed class StationsUpdatedEvent : EntityEventArgs
{
public readonly HashSet<NetEntity> Stations;
public readonly List<(string Name, NetEntity Entity)> Stations;
public StationsUpdatedEvent(HashSet<NetEntity> stations)
public StationsUpdatedEvent(List<(string Name, NetEntity Entity)> stations)
{
Stations = stations;
}