From 53abb3c3dd67d6f4af63ab028a1a1f6b0fe42ac7 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Sun, 23 Dec 2018 12:42:41 -0800 Subject: [PATCH] THAT WAS CLOSE --- code/modules/admin/verbs/SDQL2/SDQL_2.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.dm b/code/modules/admin/verbs/SDQL2/SDQL_2.dm index 06a1362b38..7e87b266d0 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2.dm @@ -635,7 +635,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/SDQL2_VV_all, new(null for(var/i in found) if(!is_proper_datum(i)) continue - world.SDQL_var(i, query_tree["call"][1], source = i, superuser) + world.SDQL_var(i, query_tree["call"][1], null, i, superuser, src) obj_count_finished++ SDQL2_TICK_CHECK SDQL2_HALT_CHECK @@ -871,7 +871,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/SDQL2_VV_all, new(null result = dummy val += result else - val = world.SDQL_var(object, expression, i, object, superuser) + val = world.SDQL_var(object, expression, i, object, superuser, src) i = expression.len return list("val" = val, "i" = i) @@ -1029,7 +1029,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/SDQL2_VV_all, new(null v = expression[start] if(long) if(expression[start + 1] == ".") - return SDQL_var(v, expression[start + 2], source = source, superuser = superuser, query = query) + return SDQL_var(v, expression[start + 2], null, source, superuser, query) else if(expression[start + 1] == ":") return (query.options & SDQL2_OPTION_BLOCKING_CALLS)? query.SDQL_function_async(object, v, expression[start + 2], source) : query.SDQL_function_blocking(object, v, expression[start + 2], source) else if(expression[start + 1] == "\[" && islist(v))