Fix /help using accoutnId instead of accountLevel

This commit is contained in:
Gent S 2020-11-26 08:30:19 -05:00
parent e3568ea506
commit 8351596763
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void helpCommand(std::string full, std::vector<std::string>& args, CNSocket* soc
Player *plr = PlayerManager::getPlayer(sock);
for (auto& cmd : ChatManager::commands) {
if (cmd.second.requiredAccLevel >= plr->accountId)
if (cmd.second.requiredAccLevel >= plr->accountLevel)
ChatManager::sendServerMessage(sock, "/" + cmd.first + (cmd.second.help.length() > 0 ? " - " + cmd.second.help : ""));
}
}