mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
fix hisp-noobs buildin
This commit is contained in:
parent
59392db9bb
commit
e0a025a5c6
1 changed files with 1 additions and 8 deletions
|
@ -1,13 +1,6 @@
|
|||
using HISP.Noobs;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Diagnostics;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HISP
|
||||
|
@ -39,7 +32,7 @@ namespace HISP
|
|||
this.Hide();
|
||||
Process clientProcess = new Process();
|
||||
clientProcess.StartInfo.FileName = "flash.dll";
|
||||
clientProcess.StartInfo.Arguments = "http://" + Program.IP + "/horseisle.swf?SERVER=" + serverIp.Text + "&PORT=" + portNumber.Value.ToString();
|
||||
clientProcess.StartInfo.Arguments = "http://127.0.0.1/horseisle.swf?SERVER=" + serverIp.Text + "&PORT=" + portNumber.Value.ToString();
|
||||
|
||||
clientProcess.StartInfo.RedirectStandardOutput = true;
|
||||
clientProcess.StartInfo.RedirectStandardError = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue