Skip to content

Commit

Permalink
Ref: ifdefs to previously ifdenined thing (#22562)
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior authored Sep 28, 2023
1 parent 00b6246 commit 846301b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions code/modules/tgs/v3210/v3_api.dm
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,7 @@
if(skip_compat_check && !fexists(SERVICE_INTERFACE_DLL))
TGS_ERROR_LOG("Service parameter present but no interface DLL detected. This is symptomatic of running a service less than version 3.1! Please upgrade.")
return
#if DM_VERSION >= 515
call_ext(SERVICE_INTERFACE_DLL, SERVICE_INTERFACE_FUNCTION)(instance_name, command) //trust no retval
#else
call(SERVICE_INTERFACE_DLL, SERVICE_INTERFACE_FUNCTION)(instance_name, command) //trust no retval
#endif
CALL_EXT(SERVICE_INTERFACE_DLL, SERVICE_INTERFACE_FUNCTION)(instance_name, command) //trust no retval
return TRUE

/datum/tgs_api/v3210/OnTopic(T)
Expand Down

0 comments on commit 846301b

Please sign in to comment.