From 00a551049d5fe0d49e12fa6d54c8f5be73f5a953 Mon Sep 17 00:00:00 2001 From: iramoye Date: Fri, 27 Feb 2026 13:51:01 -0600 Subject: [PATCH] Color-codes the ready and cancel ready buttons (#31657) * colors-the-buttons * accessibility win * Update code/modules/mob/new_player/new_player.dm Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> * Update code/modules/mob/new_player/new_player.dm Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> --------- Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> --- code/modules/mob/new_player/new_player.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 3c3eb33d36c..24706c7d83a 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -60,9 +60,9 @@ if(SSticker.current_state <= GAME_STATE_PREGAME) if(!ready) - output += "

Declare Ready

" + output += "

Declare Ready

" else - output += "

You are ready (Cancel)

" + output += "

You are ready (Cancel)

" else output += "

View the Crew Manifest

" output += "

Join Game!

"