diff options
author | Adam <Adam@anope.org> | 2013-11-16 10:39:25 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-11-16 10:39:25 -0500 |
commit | 3edce88698be28b3f60206fd7c1f2945f8742472 (patch) | |
tree | 9b06e76483c61b7622d81141a34986a2b3ea33f0 /modules/database/db_old.cpp | |
parent | 9e1fb11f93a7137c964170b196efde7bcb02ed1e (diff) |
Fix default level names for access change/list in db_old
Diffstat (limited to 'modules/database/db_old.cpp')
-rw-r--r-- | modules/database/db_old.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp index d90424d21..97cd5bce5 100644 --- a/modules/database/db_old.cpp +++ b/modules/database/db_old.cpp @@ -219,13 +219,13 @@ static Anope::string GetLevelName(int level) case 7: return "OP"; case 8: - return "LIST"; + return "ACCESS_LIST"; case 9: return "CLEAR"; case 10: return "NOJOIN"; case 11: - return "CHANGE"; + return "ACCESS_CHANGE"; case 12: return "MEMO"; case 13: |