From 3e6dd6a41d49f34d9bc223f6cccfbaf09fd60522 Mon Sep 17 00:00:00 2001 From: MrStonedOne Date: Tue, 23 Aug 2016 21:26:35 -0700 Subject: [PATCH] Better Admin name for the notes. --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index a56341692f1..5993129892b 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -385,7 +385,7 @@ var/next_external_rsc = 0 return TRUE /client/proc/note_randomizer_user() - var/const/adminckey = "CID RANDOMIZER DETECTOR" + var/const/adminckey = "CID-Error" var/sql_ckey = sanitizeSQL(ckey) //check to see if we noted them in the last day. var/DBQuery/query_get_notes = dbcon.NewQuery("SELECT id FROM [format_table_name("notes")] WHERE ckey = '[sql_ckey]' AND adminckey = '[adminckey]' AND timestamp + INTERVAL 1 DAY < NOW()")