diff options
author | Adam <Adam@anope.org> | 2015-06-29 13:57:10 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2015-06-29 13:57:32 -0400 |
commit | 074f1637508d76e2c21e9d698f265a0b4291f3b0 (patch) | |
tree | 4e8a2df80899c6264a9802885b8068090abc76e5 /modules/protocol/unreal.cpp | |
parent | de023bab0a9edd7b0621ee6479447b2ea2492573 (diff) |
#1643 Umode +I is oper only on Unreal
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r-- | modules/protocol/unreal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index 1bb0db657..ef8393b74 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -1220,7 +1220,7 @@ class ProtoUnreal : public Module ModeManager::AddUserMode(new UserModeOperOnly("CO_ADMIN", 'C')); ModeManager::AddUserMode(new UserMode("CENSOR", 'G')); ModeManager::AddUserMode(new UserModeOperOnly("HIDEOPER", 'H')); - ModeManager::AddUserMode(new UserMode("HIDEIDLE", 'I')); + ModeManager::AddUserMode(new UserModeOperOnly("HIDEIDLE", 'I')); ModeManager::AddUserMode(new UserModeOperOnly("NETADMIN", 'N')); ModeManager::AddUserMode(new UserMode("REGPRIV", 'R')); ModeManager::AddUserMode(new UserModeOperOnly("PROTECTED", 'S')); |