the client doesn't even load anyways so why

This commit is contained in:
Bitl 2017-09-01 05:48:26 -07:00
parent c7d750c8f4
commit 2a2d2e24c0
2 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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;