diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-12 20:23:26 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-12 20:23:26 +0000 |
commit | 4ab15e865571f78cd8ea22c47a1a3b7d3372a786 (patch) | |
tree | 6a9cb24eb92502a6f3153d681ac3f3f5e584d61d /src/modules/m_nickflood.cpp | |
parent | ee6087e2b463c63d58a37d0f1b611c0893fa35a5 (diff) |
Make OnChannelRestrictionApply take a User* instead of a Membership* [jackmcbarn]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11858 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_nickflood.cpp')
-rw-r--r-- | src/modules/m_nickflood.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_nickflood.cpp b/src/modules/m_nickflood.cpp index 26d04835a..f6a808ffd 100644 --- a/src/modules/m_nickflood.cpp +++ b/src/modules/m_nickflood.cpp @@ -218,7 +218,7 @@ class ModuleNickFlood : public Module nickfloodsettings *f = nf.ext.get(channel); if (f) { - FIRST_MOD_RESULT(OnChannelRestrictionApply, res, (channel->GetUser(user),channel,"nickflood")); + FIRST_MOD_RESULT(OnChannelRestrictionApply, res, (user,channel,"nickflood")); if (res == MOD_RES_ALLOW) continue; @@ -257,7 +257,7 @@ class ModuleNickFlood : public Module nickfloodsettings *f = nf.ext.get(channel); if (f) { - FIRST_MOD_RESULT(OnChannelRestrictionApply, res, (channel->GetUser(user),channel,"nickflood")); + FIRST_MOD_RESULT(OnChannelRestrictionApply, res, (user,channel,"nickflood")); if (res == MOD_RES_ALLOW) return; |