From 2a2d2e24c02f9363cdfc6ba8ea6582f90f99c1ef Mon Sep 17 00:00:00 2001 From: Bitl Date: Fri, 1 Sep 2017 05:48:26 -0700 Subject: [PATCH] the client doesn't even load anyways so why --- RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs | 4 ++-- RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs index 7064fd4..6762398 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs @@ -134,7 +134,7 @@ namespace RBXLegacyLauncher void ClientExited(object sender, EventArgs e) { - Process[] sudp = Process.GetProcessesByName("udpipe"); + Process[] sudp = Process.GetProcessesByName("udppipe"); if (sudp != null) { foreach (var process in sudp) @@ -172,7 +172,7 @@ namespace RBXLegacyLauncher if (GlobalVars.HasRocky == true) { Process sudp = new Process(); - sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udpipe.exe"; + sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udppipe.exe"; sudp.StartInfo.Arguments = "-p " + ip + " " + port + " " + port; sudp.StartInfo.UseShellExecute = false; sudp.StartInfo.CreateNoWindow = true; diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs index 2eb32d6..ebeea6d 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs @@ -77,7 +77,7 @@ namespace RBXLegacyLauncher if (GlobalVars.HasRocky == true) { Process sudp = new Process(); - sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udpipe.exe"; + sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udppipe.exe"; sudp.StartInfo.Arguments = "-p " + GlobalVars.IP + " " + GlobalVars.RobloxPort + " " + GlobalVars.RobloxPort; sudp.StartInfo.UseShellExecute = false; sudp.StartInfo.CreateNoWindow = true; @@ -691,7 +691,7 @@ namespace RBXLegacyLauncher void ClientExited(object sender, EventArgs e) { - Process[] sudp = Process.GetProcessesByName("udpipe"); + Process[] sudp = Process.GetProcessesByName("udppipe"); if (sudp != null) { foreach (var process in sudp) @@ -885,7 +885,7 @@ namespace RBXLegacyLauncher if (GlobalVars.HasRocky == true) { Process sudp = new Process(); - sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udpipe.exe"; + sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udppipe.exe"; sudp.StartInfo.Arguments = "-p " + GlobalVars.IP + " " + GlobalVars.RobloxPort + " " + GlobalVars.RobloxPort; sudp.StartInfo.UseShellExecute = false; sudp.StartInfo.CreateNoWindow = true;