Fixes delayed login message

This commit is contained in:
CitadelStationBot
2017-05-26 23:53:21 -05:00
parent 0e9f17b14a
commit 1937fc5294
+7 -1
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].")