diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 00c6f9d05e..a4382c16e5 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -29,11 +29,10 @@ output += "

Setup Character

" if(!ticker || ticker.current_state <= GAME_STATE_PREGAME) - var/readylink = "[ready ? "Not Ready" : "Ready"]" if(ready) - output += "

\[ Ready | [readylink] \]

" + output += "

\[ Ready | Not Ready \]

" else - output += "

\[ [readylink] | Not Ready \]

" + output += "

\[ Ready | Not Ready \]

" else output += "View the Crew Manifest

" @@ -99,7 +98,7 @@ if(href_list["ready"]) if(!ticker || ticker.current_state <= GAME_STATE_PREGAME) // Make sure we don't ready up after the round has started - ready = !ready + ready = text2num(href_list["ready"]) else ready = 0