diff --git a/Content.Client/Launcher/LauncherConnecting.cs b/Content.Client/Launcher/LauncherConnecting.cs index 29b241ae5d..33d31cc52d 100644 --- a/Content.Client/Launcher/LauncherConnecting.cs +++ b/Content.Client/Launcher/LauncherConnecting.cs @@ -19,6 +19,7 @@ namespace Content.Client.Launcher [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IClipboardManager _clipboard = default!; private LauncherConnectingGui? _control; @@ -58,7 +59,7 @@ namespace Content.Client.Launcher protected override void Startup() { - _control = new LauncherConnectingGui(this, _random, _prototypeManager, _cfg); + _control = new LauncherConnectingGui(this, _random, _prototypeManager, _cfg, _clipboard); _userInterfaceManager.StateRoot.AddChild(_control); diff --git a/Content.Client/Launcher/LauncherConnectingGui.xaml b/Content.Client/Launcher/LauncherConnectingGui.xaml index 3734fa5b3a..2cb349d4e7 100644 --- a/Content.Client/Launcher/LauncherConnectingGui.xaml +++ b/Content.Client/Launcher/LauncherConnectingGui.xaml @@ -18,21 +18,38 @@ - + -