From: FruitieX Date: Wed, 4 Aug 2010 15:43:33 +0000 (+0300) Subject: no newline for the ping status to fit it all on 2 lines X-Git-Tag: xonotic-v0.1.0preview~366 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ea5090e3effa685cfbe0791a01f57c202e7c6220;p=xonotic%2Fxonotic-data.pk3dir.git no newline for the ping status to fit it all on 2 lines --- diff --git a/qcsrc/server/miscfunctions.qc b/qcsrc/server/miscfunctions.qc index 5b0fa2b8c..3db4e47be 100644 --- a/qcsrc/server/miscfunctions.qc +++ b/qcsrc/server/miscfunctions.qc @@ -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)