From fcce8d9699ef1df88b887d95d1b2593bbf6db8c4 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 18 Apr 2021 20:50:44 -0500 Subject: [PATCH] Document charcurse_list, fix /charcurse --- include/aoclient.h | 3 +++ src/commands/messaging.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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();