diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-02-03 10:08:05 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-02-03 10:08:05 +0100 |
commit | 26fecc0bf2c72b9a0dea09c92ed89f78181f39f6 (patch) | |
tree | 32fbe8a2b8b899c3efbec95e9097ef45a027b0ab /src/modules | |
parent | 5ae804239ee1e2f8731b73ab37e9f16d8153d477 (diff) |
m_banredirect Fix typo in a message (transfered -> transferred)
Fixes issue #757 reported by @guikcd
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_banredirect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_banredirect.cpp b/src/modules/m_banredirect.cpp index ee52a5cfb..2e2592541 100644 --- a/src/modules/m_banredirect.cpp +++ b/src/modules/m_banredirect.cpp @@ -321,7 +321,7 @@ class ModuleBanRedirect : public Module else { user->WriteNumeric(474, "%s %s :Cannot join channel (You are banned)", user->nick.c_str(), chan->name.c_str()); - user->WriteNumeric(470, "%s %s %s :You are banned from this channel, so you are automatically transfered to the redirected channel.", user->nick.c_str(), chan->name.c_str(), redir->targetchan.c_str()); + user->WriteNumeric(470, "%s %s %s :You are banned from this channel, so you are automatically transferred to the redirected channel.", user->nick.c_str(), chan->name.c_str(), redir->targetchan.c_str()); nofollow = true; Channel::JoinUser(user, redir->targetchan.c_str(), false, "", false, ServerInstance->Time()); nofollow = false; |