diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-15 13:58:43 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-15 13:58:43 +0000 |
commit | 534870ed225302973c2cf28f6092ac807e841517 (patch) | |
tree | c48f27d851d51173c4329cceb8675789e66df915 | |
parent | a4306bc3188148e99245d4e84df7e67949e5a619 (diff) |
Remove numbers from these. They shouldn't be used anyway, enums are designed to prevent magic numbers abuse :).
Thanks Johannes13!
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10895 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/modules.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/modules.h b/include/modules.h index bb0eeec32..59b7a3389 100644 --- a/include/modules.h +++ b/include/modules.h @@ -946,15 +946,15 @@ class CoreExport Module : public Extensible * before opping a user, deopping a user, kicking a user, etc. * There are several values for access_type which indicate for what reason access is being checked. * These are:<br><br> - * AC_KICK (0) - A user is being kicked<br> - * AC_DEOP (1) - a user is being deopped<br> - * AC_OP (2) - a user is being opped<br> - * AC_VOICE (3) - a user is being voiced<br> - * AC_DEVOICE (4) - a user is being devoiced<br> - * AC_HALFOP (5) - a user is being halfopped<br> - * AC_DEHALFOP (6) - a user is being dehalfopped<br> - * AC_INVITE () - a user is being invited<br> - * AC_GENERAL_MODE (8) - a user channel mode is being changed<br><br> + * AC_KICK - A user is being kicked<br> + * AC_DEOP - a user is being deopped<br> + * AC_OP - a user is being opped<br> + * AC_VOICE - a user is being voiced<br> + * AC_DEVOICE - a user is being devoiced<br> + * AC_HALFOP - a user is being halfopped<br> + * AC_DEHALFOP - a user is being dehalfopped<br> + * AC_INVITE - a user is being invited<br> + * AC_GENERAL_MODE - a user channel mode is being changed<br><br> * Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes * to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow * the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be |