From d5e7c976333940f06250696953dc60476eeef06e Mon Sep 17 00:00:00 2001
From: Li
Date: Tue, 4 Oct 2022 15:14:45 +1300
Subject: [PATCH] Update ServerStarter.cs
---
HorseIsleServer/MPN00BS/ServerStarter.cs | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/HorseIsleServer/MPN00BS/ServerStarter.cs b/HorseIsleServer/MPN00BS/ServerStarter.cs
index 5399df2..67126b9 100755
--- a/HorseIsleServer/MPN00BS/ServerStarter.cs
+++ b/HorseIsleServer/MPN00BS/ServerStarter.cs
@@ -1,4 +1,4 @@
-using HISP.Game.Chat;
+using HISP.Game.Chat;
using HISP.Game.Horse;
using HISP.Game.Items;
using HISP.Game.Services;
@@ -63,7 +63,9 @@ namespace MPN00BS
#if OS_WINDOWS
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "WINDOWS", "flash.exe");
#elif OS_LINUX
- string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
+ string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf");
+#elif OS_MACOS
+ string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", “MACOS”, "flash.app”, “Contents”, “MacOS”, “Flash Player”);
#else
MessageBox.Show(null,"ERROR: No path for flash projector specified on this platform", "Porting error", MessageBoxButtons.Ok);
string executable = Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "WINDOWS", "flash.exe");
@@ -78,6 +80,8 @@ namespace MPN00BS
#if OS_LINUX
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
+#elif OS_MACOS
+ clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
#else
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
#endif