diff --git a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs index 828b98868f..eb47ba9a87 100644 --- a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs @@ -106,31 +106,33 @@ private void UpdateFTL(List<(NetEntity Entity, string Destination, bool Enabled) HyperspaceDestinations.DisposeAllChildren(); _destinations.Clear(); - if (destinations.Count == 0) - { - HyperspaceDestinations.AddChild(new Label() - { - Text = Loc.GetString("shuttle-console-hyperspace-none"), - HorizontalAlignment = HAlignment.Center, - }); - } - else - { - destinations.Sort((x, y) => string.Compare(x.Destination, y.Destination, StringComparison.Ordinal)); - - foreach (var destination in destinations) - { - var button = new Button() - { - Disabled = !destination.Enabled, - Text = destination.Destination, - }; - - _destinations[button] = destination.Entity; - button.OnPressed += OnHyperspacePressed; - HyperspaceDestinations.AddChild(button); - } - } + // BEGIN EKRIXI MODIFICATION + // if (destinations.Count == 0) + // { + // HyperspaceDestinations.AddChild(new Label() + // { + // Text = Loc.GetString("shuttle-console-hyperspace-none"), + // HorizontalAlignment = HAlignment.Center, + // }); + // } + // else + // { + // destinations.Sort((x, y) => string.Compare(x.Destination, y.Destination, StringComparison.Ordinal)); + // + // foreach (var destination in destinations) + // { + // var button = new Button() + // { + // Disabled = !destination.Enabled, + // Text = destination.Destination, + // }; + // + // _destinations[button] = destination.Entity; + // button.OnPressed += OnHyperspacePressed; + // HyperspaceDestinations.AddChild(button); + // } + // } + // END EKRIXI MODIFICATION string stateText; diff --git a/Content.Client/_FTL/FtlPoints/StarmapConsole.xaml b/Content.Client/_FTL/FtlPoints/StarmapConsole.xaml new file mode 100644 index 0000000000..f95fd07c67 --- /dev/null +++ b/Content.Client/_FTL/FtlPoints/StarmapConsole.xaml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + +