From a7bab46b3b9e9b911ede6533359ea47f0913c547 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Wed, 28 Mar 2018 15:50:58 -0400 Subject: [PATCH] Removes Stat Throttle --- code/modules/examine/examine.dm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/code/modules/examine/examine.dm b/code/modules/examine/examine.dm index b5d6def5bbf..0956877d202 100644 --- a/code/modules/examine/examine.dm +++ b/code/modules/examine/examine.dm @@ -49,17 +49,8 @@ description_holders["icon"] = "[bicon(A)]" description_holders["desc"] = A.desc -// Byond seemingly calls stat, each tick. -// Calling things each tick can get expensive real quick. -// So we slow this down a little. -// See: http://www.byond.com/docs/ref/info.html#/client/proc/Stat /client/Stat() . = ..() - if(holder) - sleep(1) - else - sleep(5) - stoplag() if(usr && statpanel("Examine")) stat(null,"[description_holders["icon"]] [description_holders["name"]]") //The name, written in big letters. stat(null,"[description_holders["desc"]]") //the default examine text.