summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Eskola <fruitiex@gmail.com>2014-07-02 19:16:40 +0300
committerRasmus Eskola <fruitiex@gmail.com>2014-07-02 19:16:40 +0300
commit41ee4429056d00efd0899daf614a64756b622558 (patch)
tree17c388917f0df9cb77949929d6c6a6085aa660b0
parentf5649c2bfbf3b8d6b7ece27d2968a93743d8d2ef (diff)
"Playback Complete" message now has a capital C just like znc does :-)
-rw-r--r--backlog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backlog.cpp b/backlog.cpp
index c5ced96..643a897 100644
--- a/backlog.cpp
+++ b/backlog.cpp
@@ -216,9 +216,9 @@ void CBacklogMod::OnModCommand(const CString& sCommand) {
}
if (isInChan) {
- m_pNetwork->PutUser(":***!znc@znc.in PRIVMSG " + Channel + " :" + "Playback complete.", GetClient());
+ m_pNetwork->PutUser(":***!znc@znc.in PRIVMSG " + Channel + " :" + "Playback Complete.", GetClient());
} else {
- PutModule("*** Playback complete.");
+ PutModule("*** Playback Complete.");
}
}