From 3f48d0a01acba31e52f0641246fef141d9d94de3 Mon Sep 17 00:00:00 2001 From: KindOne Date: Sun, 14 Aug 2016 21:12:14 -0400 Subject: [PATCH] Remove reference for attaching queries. This was added in commit 85b84078f8d6c34f6ba13d11f512c824ec459f7a from pull request 1072. Pull request 1014 would of made this command possible, but it was never pulled. --- src/Client.cpp | 2 +- src/ClientCommand.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client.cpp b/src/Client.cpp index cbbcae09..92b8252b 100644 --- a/src/Client.cpp +++ b/src/Client.cpp @@ -1285,7 +1285,7 @@ bool CClient::OnOtherMessage(CMessage& Message) { CString sPatterns = Message.GetParams(0); if (sPatterns.empty()) { - PutStatusNotice("Usage: /attach <#chans|queries>"); + PutStatusNotice("Usage: /attach <#chans>"); return true; } diff --git a/src/ClientCommand.cpp b/src/ClientCommand.cpp index 70d05264..5993bfdc 100644 --- a/src/ClientCommand.cpp +++ b/src/ClientCommand.cpp @@ -119,7 +119,7 @@ void CClient::UserCommand(CString& sLine) { CString sPatterns = sLine.Token(1, true); if (sPatterns.empty()) { - PutStatus("Usage: Attach <#chans|queries>"); + PutStatus("Usage: Attach <#chans>"); return; }