summaryrefslogtreecommitdiff
path: root/src/modules/m_conn_join.cpp
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-10-21 23:45:19 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-10-21 23:45:19 +0000
commit123eac3f25ce4dd3142b4ac66eb321f7df1e23e4 (patch)
tree7503b5ce313dc18edc4b39dd0e580ba6ea7fc930 /src/modules/m_conn_join.cpp
parent5d03657b63b0b77edc25cd566d9aab134d930bf7 (diff)
Change module API to use LocalUser* where correct
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11943 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_conn_join.cpp')
-rw-r--r--src/modules/m_conn_join.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp
index ef834e55a..df575f1b3 100644
--- a/src/modules/m_conn_join.cpp
+++ b/src/modules/m_conn_join.cpp
@@ -73,11 +73,10 @@ class ModuleConnJoin : public Module
return Version("Forces users to join the specified channel(s) on connect", VF_VENDOR);
}
- virtual void OnPostConnect(User* user)
+ void OnPostConnect(User* user)
{
if (!IS_LOCAL(user))
return;
-
for(std::vector<std::string>::iterator it = Joinchans.begin(); it != Joinchans.end(); it++)
if (ServerInstance->IsChannel(it->c_str(), ServerInstance->Config->Limits.ChanMax))
Channel::JoinUser(user, it->c_str(), false, "", false, ServerInstance->Time());