From d6d8e4b757ea4acbcb37118578d8d38755e5f0d3 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Sun, 28 Oct 2018 16:54:20 +0100 Subject: [PATCH] Fixed shadowling gamemode delaying the game ticker --- code/game/gamemodes/shadowling/shadowling.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index 7cbb1634de2..5b00868dc3d 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -108,12 +108,12 @@ Made by Xhuis /datum/game_mode/shadowling/post_setup() for(var/datum/mind/shadow in shadows) log_game("[key_name(shadow)] has been selected as a Shadowling.") - sleep(10) - to_chat(shadow.current, "
") - to_chat(shadow.current, "You are a shadowling!") - greet_shadow(shadow) - finalize_shadowling(shadow) - process_shadow_objectives(shadow) + spawn(rand(10,100)) + to_chat(shadow.current, "
") + to_chat(shadow.current, "You are a shadowling!") + greet_shadow(shadow) + finalize_shadowling(shadow) + process_shadow_objectives(shadow) //give_shadowling_abilities(shadow) ..()