diff options
Diffstat (limited to 'src/modules/m_alias.cpp')
-rw-r--r-- | src/modules/m_alias.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 18bf503ed..a0d361e78 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -84,10 +84,14 @@ class ModuleAlias : public Module return Version(1,0,0,1,VF_VENDOR); } - virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) + virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user, bool validated) { userrec *u = NULL; irc::string c = command.c_str(); + + /* If the command is valid, we dont want to know */ + if (validated) + return 0; for (unsigned int i = 0; i < Aliases.size(); i++) { |