wovencode / OpenMMO

OpenMMO - Groundwork
http://open-mmo.net
Other
179 stars 30 forks source link

Server doesn't work on Windows [Bug + Solution] #69

Open yaadm opened 4 years ago

yaadm commented 4 years ago

In file: ZoneManager.cs Line 241: process.StartInfo.FileName = "server" + "." + extension.ToString();

ERROR: No such file.

FIX: (works on windows) process.StartInfo.FileName = Path.GetFileNameWithoutExtension(Tools.GetProcessPath) + Path.GetExtension(Tools.GetProcessPath);

Please fix for your future windows users.

Thank you.