Webedit fixing GLOBAL_PROC advanced proc calls. (#55562)

This commit is contained in:
Ghom
2020-12-17 23:16:58 +01:00
committed by GitHub
parent 730723c2e6
commit 688731dc96
+1 -1
View File
@@ -114,7 +114,7 @@ GLOBAL_PROTECT(LastAdminCalledProc)
//adv proc call this, ya nerds
/world/proc/WrapAdminProcCall(datum/target, procname, list/arguments)
if(target == GLOBAL_PROC)
return call(procname)(arglist(arguments))
return call("/proc/[procname]")(arglist(arguments))
else if(target != world)
return call(target, procname)(arglist(arguments))
else