|
@@ -290,7 +290,10 @@ void Client::parsePrintedLine()
|
|
|
|
|
|
// If this is a local message don't broadcast externally
|
|
// If this is a local message don't broadcast externally
|
|
if (command == "qw_local") {
|
|
if (command == "qw_local") {
|
|
- say("Broadcasting within qw servers only...", bestPlayer.name);
|
|
|
|
|
|
+
|
|
|
|
+ int servercount, playercount;
|
|
|
|
+ myApp->activeClientsReplyCounters(&servercount, &playercount, myActiveClient);
|
|
|
|
+ say("Broadcasting within qw servers only... sent to " + QString(servercount) + " servers reaching " + QString(playercount) + " players." , bestPlayer.name);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|