Document charcurse_list, fix /charcurse

This commit is contained in:
MangosArentLiterature 2021-04-18 20:50:44 -05:00
parent 5d1094c12d
commit fcce8d9699
2 changed files with 4 additions and 1 deletions

View File

@ -272,6 +272,9 @@ class AOClient : public QObject {
*/ */
QTimer* afk_timer; QTimer* afk_timer;
/**
* @brief The list of char IDs a charcursed player is allowed to switch to.
*/
QList<int> charcurse_list; QList<int> charcurse_list;
/** /**

View File

@ -335,7 +335,7 @@ void AOClient::cmdCharCurse(int argc, QStringList argv)
} }
if (argc == 1) { if (argc == 1) {
target->charcurse_list.append(server->getCharID(current_char)); target->charcurse_list.append(server->getCharID(target->current_char));
} }
else { else {
argv.removeFirst(); argv.removeFirst();