From 9103b98982a469f60a3a801eb70b80b49a7282ac Mon Sep 17 00:00:00 2001 From: Amunak Date: Fri, 28 Nov 2014 10:11:32 +0100 Subject: [PATCH] Cosmetic changes to the menu ready button. It works like a toggle switch now. --- code/modules/mob/new_player/new_player.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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

"