diff --git a/include/aoclient.h b/include/aoclient.h index 254066b..3a25c36 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -272,6 +272,9 @@ class AOClient : public QObject { */ QTimer* afk_timer; + /** + * @brief The list of char IDs a charcursed player is allowed to switch to. + */ QList charcurse_list; /** diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index dcd1144..044169d 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -335,7 +335,7 @@ void AOClient::cmdCharCurse(int argc, QStringList argv) } if (argc == 1) { - target->charcurse_list.append(server->getCharID(current_char)); + target->charcurse_list.append(server->getCharID(target->current_char)); } else { argv.removeFirst();