From 3cf16283a4ee8109fab085830e69cf4eea6bc594 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Thu, 18 Oct 2018 16:03:41 -0300 Subject: [PATCH] Fixes the spirit board. (#5421) --- code/game/objects/items/spirit_board.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/spirit_board.dm b/code/game/objects/items/spirit_board.dm index a95a3e6af01..13e56ca288a 100644 --- a/code/game/objects/items/spirit_board.dm +++ b/code/game/objects/items/spirit_board.dm @@ -63,8 +63,8 @@ //mobs in range check var/users_in_range = 0 for(var/mob/living/L in orange(1,src)) - if(L.ckey && L.client) - if((world.time - L.client.inactivity) < (world.time - 300) || L.stat != CONSCIOUS || L.restrained()) + if(L.ckey) + if(L.stat != CONSCIOUS || L.restrained()) to_chat(M, "\The [L] does not seem to be paying attention to the [src].") else users_in_range++