diff options
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/users.h b/include/users.h index e76c88676..a39af7b50 100644 --- a/include/users.h +++ b/include/users.h @@ -38,11 +38,11 @@ enum ClassTypes { /** RFC1459 channel modes * */ enum UserModes { - UM_SERVERNOTICE = 's'-65, - UM_WALLOPS = 'w'-65, - UM_INVISIBLE = 'i'-65, - UM_OPERATOR = 'o'-65, - UM_SNOMASK = 'n'-65, + UM_SERVERNOTICE = 's' - 65, + UM_WALLOPS = 'w' - 65, + UM_INVISIBLE = 'i' - 65, + UM_OPERATOR = 'o' - 65, + UM_SNOMASK = 'n' - 65 }; enum RegistrationState { |