]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
no newline for the ping status to fit it all on 2 lines
authorFruitieX <rasse@rasse-lappy.localdomain>
Wed, 4 Aug 2010 15:43:33 +0000 (18:43 +0300)
committerFruitieX <rasse@rasse-lappy.localdomain>
Wed, 4 Aug 2010 15:43:33 +0000 (18:43 +0300)
qcsrc/server/miscfunctions.qc

index 5b0fa2b8caabc429fd3bdae394326bffb1ef616b..3db4e47be8d2e154732916bda9d1de44bee0cad8 100644 (file)
@@ -100,9 +100,9 @@ string GetAdvancedDeathReports(entity enPlayer) // Extra fragmessage information
 
        if(cvar("sv_fragmessage_information_ping")) {
                if(clienttype(enPlayer) == CLIENTTYPE_BOT) // Bots have no ping
-                       strMessage = strcat(strMessage, "\n^7(^2Bot");
+                       strMessage = strcat(strMessage, " ^7(^2Bot");
                else
-                       strMessage = strcat(strMessage, "\n^7(Ping ", strPlayerPingColor, ftos(nPlayerPing), "ms");
+                       strMessage = strcat(strMessage, " ^7(Ping ", strPlayerPingColor, ftos(nPlayerPing), "ms");
                if(cvar("sv_fragmessage_information_handicap"))
                        if(cvar("sv_fragmessage_information_handicap") == 2)
                                if(nPlayerHandicap <= 1)