]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Change the station map dot color to cyan (#24082)
authoriacore <74560659+iacore@users.noreply.github.com>
Fri, 19 Jan 2024 05:31:29 +0000 (05:31 +0000)
committerGitHub <noreply@github.com>
Fri, 19 Jan 2024 05:31:29 +0000 (00:31 -0500)
Change the station map tracking dot color to cyan

Co-authored-by: iacore <noreply+gpg-stub@1a-insec.net>
Content.Client/Pinpointer/UI/StationMapWindow.xaml.cs

index f52f53677530899fb9889cad81359dc0d86767c8..1b01fe4e30497b52e267ef175ea3521bc8ab27e2 100644 (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))
         {