Merge pull request #1217 from Citadel-Station-13/upstream-merge-27685

[MIRROR] Fixes delayed login message
This commit is contained in:
LetterJay
2017-05-31 01:48:42 -05:00
committed by GitHub

View File

@@ -29,4 +29,10 @@
new_player_panel()
client.playtitlemusic()
if(SSticker.current_state < GAME_STATE_SETTING_UP)
to_chat(src, "Please set up your character and select \"Ready\". The game will start in about [round(SSticker.GetTimeLeft(), 1)/10] seconds.")
var/tl = round(SSticker.GetTimeLeft(), 1)/10
var/postfix
if(tl >= 0)
postfix = "in about [tl] seconds"
else
postfix = "soon"
to_chat(src, "Please set up your character and select \"Ready\". The game will start [postfix].")