]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alias.cpp
Improved strhashcomp with no allocations
[user/henk/code/inspircd.git] / src / modules / m_alias.cpp
index f73fd74db20af858b7d1cefacb19ebb06be8771f..db3d75baebed43bdfb07fffe0f579b8e42ee07f2 100644 (file)
@@ -92,8 +92,11 @@ class ModuleAlias : public Module
                        userrec *u = NULL;
                        irc::string c = command.c_str();
 
-                       /* If the command is valid, we dont want to know */
-                       if (validated)
+                       /* If the command is valid, we dont want to know,
+                        * and if theyre not registered yet, we dont want
+                        * to know either
+                        */
+                       if ((validated) || (user->registered != 7))
                                return 0;
                        
                        for (unsigned int i = 0; i < Aliases.size(); i++)