From d5a54402cfa0b0e39c29680259b21a806ea5b6ee Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 7 Jan 2018 15:05:52 -0200 Subject: [PATCH 1/2] Merge pull request #34127 from tgstation/Cyberboss-patch-7 Removes the weird timer shennaigans from exp tracking --- code/modules/jobs/job_exp.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_exp.dm b/code/modules/jobs/job_exp.dm index 220fa2e9ac..0af03ac739 100644 --- a/code/modules/jobs/job_exp.dm +++ b/code/modules/jobs/job_exp.dm @@ -132,7 +132,7 @@ GLOBAL_PROTECT(exp_to_update) for(var/client/L in GLOB.clients) if(L.is_afk()) continue - addtimer(CALLBACK(L,/client/proc/update_exp_list,mins,ann),10) + L.update_exp_list(mins,ann) /datum/controller/subsystem/blackbox/proc/update_exp_db() SSdbcore.MassInsert(format_table_name("role_time"),GLOB.exp_to_update,TRUE)