diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2016-05-27 14:07:20 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2016-05-27 14:07:20 +0200 |
| commit | 4aa8ac0ee08a839a1c264dc4814cef45034b10c6 (patch) | |
| tree | fd31e20f6aa1db00f7184167568a25c9e797c593 | |
| parent | 20216ed1e2c15a2487b7f6a8dc3afd51572fa29f (diff) | |
| download | manager-4aa8ac0ee08a839a1c264dc4814cef45034b10c6.tar.gz manager-4aa8ac0ee08a839a1c264dc4814cef45034b10c6.zip | |
Use notices for Unknown-Command response in queries
| -rw-r--r-- | src/crsm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp index f6ce2b4..b567e24 100644 --- a/src/crsm.cpp +++ b/src/crsm.cpp @@ -2101,7 +2101,7 @@ void CRSM::handleIrcMessage(const ClientInfo &client, QString message, const QSt { if(!cmd(command, client)) { - respond(client, "Unbekannter Befehl: \"" + command + "\"!"); + respond(client, "Unbekannter Befehl: \"" + command + "\"!", (privateMessage ? RespondType::PrivateNotice : RespondType::Normal), true); } } |
