mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-21 12:19:15 +12:00
Fix N00BS
This commit is contained in:
parent
0c299729dd
commit
b3df338715
15 changed files with 71 additions and 81 deletions
|
@ -76,8 +76,8 @@ namespace HISP.Noobs
|
|||
private void editServerPropertiesToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
Process p = new Process();
|
||||
p.StartInfo.FileName = "notepad.exe";
|
||||
p.StartInfo.Arguments = Path.Combine(Program.BaseDir, "server.properties");
|
||||
p.StartInfo.FileName = Path.Combine(Program.BaseDir, "server.properties");
|
||||
p.StartInfo.UseShellExecute = true;
|
||||
p.Start();
|
||||
|
||||
}
|
||||
|
@ -85,8 +85,8 @@ namespace HISP.Noobs
|
|||
private void openServerFolderToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
Process p = new Process();
|
||||
p.StartInfo.FileName = "explorer.exe";
|
||||
p.StartInfo.Arguments = Program.BaseDir;
|
||||
p.StartInfo.FileName = Program.BaseDir;
|
||||
p.StartInfo.UseShellExecute = true;
|
||||
p.Start();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue