From d88ef0b5db26c3a366ebbc912d4a8318b6baacc0 Mon Sep 17 00:00:00 2001 From: JJRcop Date: Mon, 22 Sep 2014 02:46:50 -0400 Subject: [PATCH] Editing example to fit example description --- code/modules/admin/verbs/SDQL2/SDQL_2.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.dm b/code/modules/admin/verbs/SDQL2/SDQL_2.dm index ef0830504fb..2ae22aae718 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2.dm @@ -12,7 +12,7 @@ -- Will delete all pickaxes. "IN world" is not required. DELETE /obj/item/weapon/pickaxe -- Will flicker the lights once, then turn all mobs green. The semicolon is important to separate the consecutive querys, but is not required for standard one-query use - CALL flicker(1) ON /obj/machinery/light; UPDATE /mob/living/carbon/human SET color = "#00cc00" + CALL flicker(1) ON /obj/machinery/light; UPDATE /mob SET color = "#00cc00" --You can use operators other than ==, such as >, <=, != and etc.. @@ -480,4 +480,4 @@ if(word != "") query_list += word - return query_list \ No newline at end of file + return query_list