[21:23] Svatopluk if (Process.GetProcesses().Any(x => x.ProcessName.StartsWith("spring_"))) return; // dont start if started from installer
[21:23] DeinFreund back..
[21:23] Svatopluk Lynx there is your problem right there
[21:24] Svatopluk it needs to put x.ProcessName in try-catch block
[21:24] Lynx I am starting using "mono Zero-K.exe|
[21:24] BigMac what is happening in multiplayer?
[21:24] DeinFreund nothing currently..
[21:25] SmokeDragon i just got mine working
[21:25] Svatopluk the correct code would have helper function such as "private static String GetProcessNameSafely(Process p) { try { return p.ProcessName; } catch (Exception ex) { return null; } }
[21:25] SmokeDragon on linux mint
[21:26] Lynx Svatopluk might I ask - how did you determine the line giviing problem from my pastebin output?
[21:26] Svatopluk if (Process.GetProcesses().Any(x => { var name = GetProcessNameSafely(x); return name.StartsWith("spring_")); }) return; // dont start if started from installer
[21:26] BigMac what is going on???
[21:27] SmokeDragon the end of the internet is upon us
[21:27] Svatopluk Lynx from stack trace, it doesn't call Process.ProcessName nowhere else in main
[21:27] BigMac server is starting and closing battles
[21:27] tomicaST bad bad server
[21:28] tomicaST wht nw
[21:28] tomicaST now
[21:28] Svatopluk Lynx if you find somebody that develops zklobby and puts fix as i described above, it will stop throwing that error for you