Paul Klumpp 12 rokov pred
rodič
commit
cb4c23a381
1 zmenil súbory, kde vykonal 6 pridanie a 5 odobranie
  1. 6 5
      Client.cpp

+ 6 - 5
Client.cpp

@@ -161,9 +161,10 @@ void Client::parsePrintedLine()
 
 	if(command == "help")
 	{
-    say("> Commands:");
-    say("> Broadcast a message: .qw <message> and .spam <message>, beware of the floodprot limits 600s for .qw and 300s for .spam");
-    say("> Mute/Unmute: .qw_mute and .qw_unmute or .spam_mute or .spam_unmute");
+    //say("> Commands:");
+    say("> Broadcast a message: .qw <message> and .spam <message>");
+    //, beware of the floodprot limits 600s for .qw and 300s for .spam");
+    say("> (Un)Mute: .qw_mute .qw_unmute or .spam_mute .spam_unmute");
 		return;
 	}
 
@@ -180,7 +181,7 @@ void Client::parsePrintedLine()
       timeLeft = currentTime.secsTo(myQWBroadcastFloodTime);
       if(timeLeft > 0)
       {
-        say("> FloodProt: Wait " + QString::number(timeLeft) + " sec(s) before broadcasting a new .qw message.");
+        say("> FloodProt: Wait " + QString::number(timeLeft) + " secs before new .qw");
         return;
       }
       myQWBroadcastFloodTime = currentTime.addSecs(Settings::globalInstance()->qwFloodProtTime());
@@ -190,7 +191,7 @@ void Client::parsePrintedLine()
       timeLeft = currentTime.secsTo(mySpamBroadcastFloodTime);
       if(timeLeft > 0)
       {
-        say("> FloodProt: Wait " + QString::number(timeLeft) + " sec(s) before broadcasting a new .spam message.");
+        say("> FloodProt: Wait " + QString::number(timeLeft) + " secs before new .spam");
         return;
       }
       mySpamBroadcastFloodTime = currentTime.addSecs(Settings::globalInstance()->spamFloodProtTime());