diff options
Diffstat (limited to 'modules/protocol/bahamut.cpp')
-rw-r--r-- | modules/protocol/bahamut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/bahamut.cpp b/modules/protocol/bahamut.cpp index 2e6e0eff2..73955149d 100644 --- a/modules/protocol/bahamut.cpp +++ b/modules/protocol/bahamut.cpp @@ -423,7 +423,7 @@ class BahamutIRCdMessage : public IRCdMessage c->JoinUser(u); /* Now set whatever modes this user is allowed to have on the channel */ - chan_set_correct_modes(u, c, 1); + chan_set_correct_modes(u, c, 1, true); /* Check to see if modules want the user to join, if they do * check to see if they are allowed to join (CheckKick will kick/ban them) @@ -479,7 +479,7 @@ class BahamutIRCdMessage : public IRCdMessage c->SetModeInternal(NULL, *it, buf); /* Now set whatever modes this user is allowed to have on the channel */ - chan_set_correct_modes(u, c, 1); + chan_set_correct_modes(u, c, 1, true); /* Check to see if modules want the user to join, if they do * check to see if they are allowed to join (CheckKick will kick/ban them) |