Change the station map dot color to cyan (#24082)

Change the station map tracking dot color to cyan

Co-authored-by: iacore <noreply+gpg-stub@1a-insec.net>
This commit is contained in:
iacore
2024-01-19 05:31:29 +00:00
committed by GitHub
parent 8cc24c9a5d
commit c35b9964c7

View File

@@ -15,7 +15,7 @@ public sealed partial class StationMapWindow : FancyWindow
NavMapScreen.MapUid = mapUid;
if (trackedEntity != null)
NavMapScreen.TrackedCoordinates.Add(new EntityCoordinates(trackedEntity.Value, Vector2.Zero), (true, Color.Red));
NavMapScreen.TrackedCoordinates.Add(new EntityCoordinates(trackedEntity.Value, Vector2.Zero), (true, Color.Cyan));
if (IoCManager.Resolve<IEntityManager>().TryGetComponent<MetaDataComponent>(mapUid, out var metadata))
{