Merge pull request #10033 from alex-gh/ticker_delay_fix

Fixes shadowling game mode delaying the game ticker
This commit is contained in:
tigercat2000
2018-10-28 10:10:29 -07:00
committed by GitHub
+6 -6
View File
@@ -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, "<br>")
to_chat(shadow.current, "<span class='deadsay'><b><font size=3>You are a shadowling!</font></b></span>")
greet_shadow(shadow)
finalize_shadowling(shadow)
process_shadow_objectives(shadow)
spawn(rand(10,100))
to_chat(shadow.current, "<br>")
to_chat(shadow.current, "<span class='deadsay'><b><font size=3>You are a shadowling!</font></b></span>")
greet_shadow(shadow)
finalize_shadowling(shadow)
process_shadow_objectives(shadow)
//give_shadowling_abilities(shadow)
..()