From c35b9964c770714f5ba56fce827912cd33312fe6 Mon Sep 17 00:00:00 2001 From: iacore <74560659+iacore@users.noreply.github.com> Date: Fri, 19 Jan 2024 05:31:29 +0000 Subject: [PATCH] Change the station map dot color to cyan (#24082) Change the station map tracking dot color to cyan Co-authored-by: iacore --- Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs b/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs index f52f536775..1b01fe4e30 100644 --- a/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs +++ b/Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs @@ -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().TryGetComponent(mapUid, out var metadata)) { -- 2.51.2