diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-15 01:39:47 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-15 01:39:47 +0000 |
commit | d50dc7ef79bfddd38d059bd315d6b938b876e6dd (patch) | |
tree | eb252c5d53176536ab136f75304fb27fe03ee110 | |
parent | 717c8f8ef4a752f8b6c684a1ee0c4115c6a4e4a8 (diff) |
Prioritize this to LAST to allow host changers and cloaking to be done prior to joining any channels. Thx Strike.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7322 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_conn_join.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp index be0ff687f..524c236f7 100644 --- a/src/modules/m_conn_join.cpp +++ b/src/modules/m_conn_join.cpp @@ -51,6 +51,11 @@ class ModuleConnJoin : public Module OnRehash(NULL, ""); } + Priority Prioritize() + { + return PRIORITY_LAST; + } + void Implements(char* List) { List[I_OnPostConnect] = List[I_OnRehash] = 1; |