summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/commands/bs_set.cpp8
-rw-r--r--modules/database/db_old.cpp4
-rw-r--r--src/access.cpp4
3 files changed, 7 insertions, 9 deletions
diff --git a/modules/commands/bs_set.cpp b/modules/commands/bs_set.cpp
index 4bf8609ef..6d764c665 100644
--- a/modules/commands/bs_set.cpp
+++ b/modules/commands/bs_set.cpp
@@ -313,11 +313,9 @@ class CommandBSSetFantasy : public Command
"with one of the following fantasy characters: \002%s\002\n"
" \n"
"Note that users wanting to use fantaisist\n"
- "commands MUST have enough level for both\n"
- "the FANTASIA and another level depending\n"
- "of the command if required (for example, to use\n"
- "!op, user must have enough access for the OPDEOP\n"
- "level)."), Config->ChanServ.c_str(), Config->BSFantasyCharacter.c_str());
+ "commands MUST have enough access for both\n"
+ "the FANTASIA and the command they are executing."),
+ Config->ChanServ.c_str(), Config->BSFantasyCharacter.c_str());
return true;
}
};
diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp
index dc2e1676b..6eba8a2a9 100644
--- a/modules/database/db_old.cpp
+++ b/modules/database/db_old.cpp
@@ -222,7 +222,7 @@ static Anope::string GetLevelName(int level)
case 6:
return "AUTOVOICE";
case 7:
- return "OPDEOP";
+ return "OP";
case 8:
return "LIST";
case 9:
@@ -256,7 +256,7 @@ static Anope::string GetLevelName(int level)
case 23:
return "AUTOPROTECT";
case 24:
- return "OPDEOPME";
+ return "OPME";
case 25:
return "HALFOPME";
case 26:
diff --git a/src/access.cpp b/src/access.cpp
index 8c43b3a3d..a8da63c50 100644
--- a/src/access.cpp
+++ b/src/access.cpp
@@ -44,8 +44,8 @@ static struct
{"MEMO", _("Allowed to read channel memos")},
{"MODE", _("Allowed to use the MODE command")},
{"NOKICK", _("Prevents users being kicked by Services")},
- {"OPDEOP", _("Allowed to (de)op users")},
- {"OPDEOPME", _("Allowed to (de)op him/herself")},
+ {"OP", _("Allowed to (de)op users")},
+ {"OPME", _("Allowed to (de)op him/herself")},
{"OWNER", _("Allowed to (de)owner users")},
{"OWNERME", _("Allowed to (de)owner him/herself")},
{"PROTECT", _("Allowed to (de)protect users")},