]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
comment out the escape until we know how to do it properly :P
authorFruitieX <rasse@rasse-lappy.localdomain>
Wed, 9 Jun 2010 11:50:24 +0000 (14:50 +0300)
committerFruitieX <rasse@rasse-lappy.localdomain>
Wed, 9 Jun 2010 11:50:24 +0000 (14:50 +0300)
qcsrc/client/hud.qc

index aff0cac42135e544dc7390078cbef4edeb94c7dc..c55f4a7e78ed9e89b88ef7f18ea2af2713a2b625 100644 (file)
@@ -3648,14 +3648,17 @@ void HUD_Chat(void)
        cvar_set("con_chatwidth", ftos(mySize_x/vid_conwidth));
        cvar_set("con_chat", ftos(mySize_y/cvar("con_chatsize")));
 
+       // TODO: fixme, how to escape this (\001) in qc?
+       /*
        if(hud_configure)
        {
                if(chat_prevtime != floor(time/3))
                {
                        chat_prevtime = floor(time/3);
-                       print("\001Player: This is the chat area\n");
+                       print("\001", "Player: This is the chat area\n");
                }
        }
+       */
 }
 
 /*