diff --git a/DMAPI/st_interface.dm b/DMAPI/st_interface.dm index 4bf3db1775..14f46e3bba 100644 --- a/DMAPI/st_interface.dm +++ b/DMAPI/st_interface.dm @@ -30,7 +30,7 @@ SERVER_TOOLS_DEFINE_AND_SET_GLOBAL(server_tools_api_compatible, FALSE) return if(skip_compat_check && !fexists(SERVICE_INTERFACE_DLL)) CRASH("Service parameter present but no interface DLL detected. This is symptomatic of running a service less than version 3.1! Please upgrade.") - call(SERVICE_INTERFACE_DLL, SERVICE_INTERFACE_FUNCTION)("[params[SERVICE_INSTANCE_PARAM]] [command]") //trust no retval + call(SERVICE_INTERFACE_DLL, SERVICE_INTERFACE_FUNCTION)(params[SERVICE_INSTANCE_PARAM]], command) //trust no retval return TRUE /world/proc/ChatBroadcast(message) diff --git a/TGServerService/ServerInstance/Interop.cs b/TGServerService/ServerInstance/Interop.cs index e796527fec..3ce9a2cd96 100644 --- a/TGServerService/ServerInstance/Interop.cs +++ b/TGServerService/ServerInstance/Interop.cs @@ -21,7 +21,7 @@ namespace TGServerService string serviceCommsKey; //regenerated every DD restart //range of supported api versions - const int AllowedMajorAPIVersion = 1; + const int AllowedMajorAPIVersion = 2; Version GameAPIVersion; const string SPInstanceName = "server_instance";