1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 11:23:12 +02:00

Bug #1237 - only set umode +h on a user joining help chan if they have op access

This commit is contained in:
lethality
2011-01-28 00:09:34 +00:00
parent b354d4d1ab
commit d8b92f1c70
+1 -1
View File
@@ -29,7 +29,7 @@ class HelpChannel : public Module
{
User *u = finduser(param);
if (u)
if (u && check_access(u, c->ci, CA_OPDEOPME))
u->SetMode(OperServ, UMODE_HELPOP);
}