]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Fix bug with cl_parse.c putting extra \2 in the Con_Printf() line
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 24 Feb 2013 16:59:33 +0000 (16:59 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 24 Feb 2013 16:59:33 +0000 (16:59 +0000)
From: Samual Lenks <samual@xonotic.org>

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11905 d7cf8633-e32d-0410-b094-e92efae38249

cl_parse.c
console.c

index 53bc140c5dea4efaf08a163c8b52721db4479f69..a97ca0f62ce2da756cb3e9ae8b2e1ecda4fe552b 100644 (file)
@@ -1744,7 +1744,7 @@ static void CL_ParseServerInfo (void)
                cl.movevars_airaccel_sideways_friction = 0;
 
                // seperate the printfs so the server message can have a color
-               Con_Printf("\n\n<===================================>\n\n\2%s\n", str);
+               Con_Printf("\n\n<===================================>\n\n%s\n", str);
 
                // check memory integrity
                Mem_CheckSentinelsGlobal();
@@ -1800,7 +1800,7 @@ static void CL_ParseServerInfo (void)
 
        // seperate the printfs so the server message can have a color
                if (cls.protocol != PROTOCOL_NEHAHRAMOVIE) // no messages when playing the Nehahra movie
-                       Con_Printf("\n<===================================>\n\n\2%s\n", str);
+                       Con_Printf("\n<===================================>\n\n%s\n", str);
 
                // check memory integrity
                Mem_CheckSentinelsGlobal();
index 634fd09c39a53343d5f5cb190d9921c8c61140f7..5724d75e865b08672f17540e111a82749fda005a 100644 (file)
--- a/console.c
+++ b/console.c
@@ -1063,7 +1063,7 @@ void Con_MaskPrint(int additionalmask, const char *msg)
                        line[index++] = STRING_COLOR_DEFAULT + '0';
                        // special color codes for chat messages must always come first
                        // for Con_PrintToHistory to work properly
-                       if (*msg == 1 || *msg == 2 || *msg == 3) // Adding 3 for now since I don't know if 2 is used for anything. Can be fixed later if 2 isn't used.
+                       if (*msg == 1 || *msg == 2)
                        {
                                // play talk wav
                                if (*msg == 1)
@@ -1086,12 +1086,7 @@ void Con_MaskPrint(int additionalmask, const char *msg)
                                                }
                                        }
                                }
-                               
-                               // Send to chatbox for say/tell (1) and messages (3)
-                               // 3 is just so that a message can be sent to the chatbox without a sound.
-                               if (*msg == 1 || *msg == 3)
-                                       mask = CON_MASK_CHAT;
-                                       
+                               mask = CON_MASK_CHAT;
                                line[index++] = STRING_COLOR_TAG;
                                line[index++] = '3';
                                msg++;