Traitor greet text changes

New line, mentioning recognizing words. Phrases are now generated in a list, rather than just a joined string.
This commit is contained in:
Akrilla
2019-05-24 22:34:09 +01:00
parent f97301b07e
commit 1262f1d4fc
2 changed files with 13 additions and 9 deletions

View File

@@ -117,9 +117,9 @@ SUBSYSTEM_DEF(ticker)
if(!GLOB.syndicate_code_phrase)
GLOB.syndicate_code_phrase = generate_code_phrase()
GLOB.syndicate_code_phrase = generate_code_phrase(return_list=TRUE)
if(!GLOB.syndicate_code_response)
GLOB.syndicate_code_response = generate_code_phrase()
GLOB.syndicate_code_response = generate_code_phrase(return_list=TRUE)
start_at = world.time + (CONFIG_GET(number/lobby_countdown) * 10)
if(CONFIG_GET(flag/randomize_shift_time))
@@ -412,7 +412,7 @@ SUBSYSTEM_DEF(ticker)
queued_players.len = 0
queue_delay = 0
return
queue_delay++
var/mob/dead/new_player/next_in_line = queued_players[1]