From 49661db231d50c2dbd5041c9c6fe8e753a756f2e Mon Sep 17 00:00:00 2001 From: Quacky Date: Sun, 13 Aug 2017 22:34:44 -0500 Subject: [PATCH] udp --> udpipe --- RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs index 6287cc1..732b356 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs @@ -919,7 +919,7 @@ namespace RBXLegacyLauncher if (GlobalVars.HasRocky == true) { Process sudp = new Process(); - sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udp.exe"; + sudp.StartInfo.FileName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\udpipe.exe"; sudp.StartInfo.Arguments = "-p " + GlobalVars.IP + " " + GlobalVars.RobloxPort + " " + GlobalVars.RobloxPort; sudp.StartInfo.UseShellExecute = false; sudp.StartInfo.CreateNoWindow = true;