diff options
author | ShinDarth <borzifrancesco@gmail.com> | 2016-08-21 20:50:02 +0200 |
---|---|---|
committer | ShinDarth <borzifrancesco@gmail.com> | 2016-08-21 20:50:02 +0200 |
commit | d641365b3b8e3aac2c918c3a2bc10acfbd960813 (patch) | |
tree | d5c77338f866b1d94a6070501108758086b0e5af /src/scripts/Commands/cs_character.cpp | |
parent | 1e5af6d3bec7ab99c1e79165ef19e9bf781e6c46 (diff) |
Script/Commands: fix all command permissions
Diffstat (limited to 'src/scripts/Commands/cs_character.cpp')
-rw-r--r-- | src/scripts/Commands/cs_character.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/Commands/cs_character.cpp b/src/scripts/Commands/cs_character.cpp index dcf98d5e6a..c2b1d5d6c0 100644 --- a/src/scripts/Commands/cs_character.cpp +++ b/src/scripts/Commands/cs_character.cpp @@ -37,7 +37,7 @@ public: { "customize", SEC_GAMEMASTER, true, &HandleCharacterCustomizeCommand, "" }, { "changefaction", SEC_GAMEMASTER, true, &HandleCharacterChangeFactionCommand, "" }, { "changerace", SEC_GAMEMASTER, true, &HandleCharacterChangeRaceCommand, "" }, - { "level", SEC_ADMINISTRATOR, true, &HandleCharacterLevelCommand, "" }, + { "level", SEC_GAMEMASTER, true, &HandleCharacterLevelCommand, "" }, { "rename", SEC_GAMEMASTER, true, &HandleCharacterRenameCommand, "" }, { "reputation", SEC_GAMEMASTER, true, &HandleCharacterReputationCommand, "" }, { "titles", SEC_GAMEMASTER, true, &HandleCharacterTitlesCommand, "" } @@ -46,7 +46,7 @@ public: static std::vector<ChatCommand> commandTable = { { "character", SEC_GAMEMASTER, true, nullptr, "", characterCommandTable }, - { "levelup", SEC_ADMINISTRATOR, false, &HandleLevelUpCommand, "" }, + { "levelup", SEC_GAMEMASTER, false, &HandleLevelUpCommand, "" }, { "pdump", SEC_ADMINISTRATOR, true, nullptr, "", pdumpCommandTable } }; return commandTable; |