]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
m_banredirect Fix typo in a message (transfered -> transferred)
authorAttila Molnar <attilamolnar@hush.com>
Mon, 3 Feb 2014 09:08:05 +0000 (10:08 +0100)
committerAttila Molnar <attilamolnar@hush.com>
Mon, 3 Feb 2014 09:08:05 +0000 (10:08 +0100)
Fixes issue #757 reported by @guikcd

src/modules/m_banredirect.cpp

index ee52a5cfbb8d058dfad23061c5872e475cf9c224..2e25925410d6ef67d03f2a80b9b9da3da1d8999d 100644 (file)
@@ -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;