From 4979a98e77efebbc8885cdea3266b0b1d3914eec Mon Sep 17 00:00:00 2001 From: "johnsonmt88@gmail.com" Date: Sun, 7 Oct 2012 18:42:51 +0000 Subject: [PATCH] Fixed a typo when trying to latejoin before a round starts or after it finishes. - A '/' should have been a '\' git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4824 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/new_player/new_player.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 43fa786aa3c..41348f2b5fa 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -148,7 +148,7 @@ if(href_list["late_join"]) if(!ticker || ticker.current_state != GAME_STATE_PLAYING) - usr << "/red The round is either not ready, or has already finished..." + usr << "\red The round is either not ready, or has already finished..." return LateChoices()