We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d3f4f commit d380786Copy full SHA for d380786
SS14.Launcher/Program.cs
@@ -41,7 +41,6 @@ internal static class Program
41
[STAThread]
42
public static void Main(string[] args)
43
{
44
- UrlOpenedEventArgs? urlArgs = null;
45
#if DEBUG
46
Console.OutputEncoding = Encoding.UTF8;
47
#endif
@@ -52,11 +51,6 @@ public static void Main(string[] args)
52
51
var msgr = new LauncherMessaging();
53
Locator.CurrentMutable.RegisterConstant(msgr);
54
55
- if (urlArgs != null)
56
- {
57
- args = urlArgs.Urls.ToArray();
58
- }
59
-
60
// Parse arguments as early as possible for launcher messaging reasons.
61
string[] commands = { LauncherCommands.PingCommand };
62
var commandSendAnyway = false;
0 commit comments