diff options
| author | 2008-02-26 15:42:24 +0000 | |
|---|---|---|
| committer | 2008-02-26 15:42:24 +0000 | |
| commit | 85966c30503b31e7133f018e19ddc8a79cd68307 (patch) | |
| tree | 962c192887c93b35de12a32e1546c7464031807b /src/modules/m_invisible.cpp | |
| parent | Remove the 'making modules' line (diff) | |
| download | inspircd++-85966c30503b31e7133f018e19ddc8a79cd68307.tar.gz inspircd++-85966c30503b31e7133f018e19ddc8a79cd68307.tar.bz2 inspircd++-85966c30503b31e7133f018e19ddc8a79cd68307.zip | |
D'oh, this repeats the 'mode enabled' line once per channel. Thanks ElementAlchemist.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9034 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_invisible.cpp')
| -rw-r--r-- | src/modules/m_invisible.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_invisible.cpp b/src/modules/m_invisible.cpp index 3b3155be8..705d2a614 100644 --- a/src/modules/m_invisible.cpp +++ b/src/modules/m_invisible.cpp @@ -114,9 +114,9 @@ class InvisibleMode : public ModeHandler i->first->WriteServ("MODE %s +%s", f->first->name, n.c_str()); } } - - ServerInstance->SNO->WriteToSnoMask('A', "\2NOTICE\2: Oper %s has become %svisible (%sQ)", dest->GetFullHost(), adding ? "in" : "", adding ? "+" : "-"); } + + ServerInstance->SNO->WriteToSnoMask('A', "\2NOTICE\2: Oper %s has become %svisible (%sQ)", dest->GetFullHost(), adding ? "in" : "", adding ? "+" : "-"); return MODEACTION_ALLOW; } else |
