diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 0d8fdd76593..9e57ff95385 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -29,8 +29,11 @@ output += "

Setup Character

" if(!ticker || ticker.current_state <= GAME_STATE_PREGAME) - if(!ready) output += "

Declare Ready

" - else output += "

You are ready (Cancel)

" + var/readylink = "[ready ? "Not Ready" : "Ready"]" + if(ready) + output += "

\[ Ready | [readylink] \]

" + else + output += "

\[ [readylink] | Not Ready \]

" else output += "View the Crew Manifest

"