diff options
Diffstat (limited to 'src/modules/m_operprefix.cpp')
| -rw-r--r-- | src/modules/m_operprefix.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_operprefix.cpp b/src/modules/m_operprefix.cpp index deb826108..aeea1ad19 100644 --- a/src/modules/m_operprefix.cpp +++ b/src/modules/m_operprefix.cpp @@ -151,12 +151,12 @@ class ModuleOperPrefixMode : public Module } // XXX: is there a better way to do this? - virtual int OnRawMode(User* user, Channel* chan, const char mode, const std::string ¶m, bool adding, int pcnt) + virtual ModResult OnRawMode(User* user, Channel* chan, const char mode, const std::string ¶m, bool adding, int pcnt) { /* force event propagation to its ModeHandler */ if (!IS_FAKE(user) && chan && (mode == 'y')) - return ACR_ALLOW; - return 0; + return MOD_RES_ALLOW; + return MOD_RES_PASSTHRU; } virtual void OnOper(User *user, const std::string&) |
