From a2ee030147f92c81850beac562afe1d7d2705a2e Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Thu, 25 Aug 2016 13:03:24 -0700 Subject: [PATCH] New players should not be put through the wringer --- 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 a69b81da167..c073d873444 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -497,7 +497,7 @@ var/DBQuery/query_cidcheck = dbcon.NewQuery("SELECT computerid FROM [format_table_name("player")] WHERE ckey = '[sql_ckey]'") query_cidcheck.Execute() - var/lastcid + var/lastcid = computer_id if(query_cidcheck.NextRow()) lastcid = query_cidcheck.item[1]