From d3a46b8ce2a5e8bd2d148ba109dce5c84af6d18b Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Sat, 2 Oct 2021 14:57:45 +0200 Subject: [PATCH] Add more error messages and tell the mod if the command actually worked. --- core/src/commands/messaging.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/core/src/commands/messaging.cpp b/core/src/commands/messaging.cpp index dcdfc37..7582501 100644 --- a/core/src/commands/messaging.cpp +++ b/core/src/commands/messaging.cpp @@ -493,16 +493,22 @@ void AOClient::cmdCharSelect(int argc, QStringList argv) bool ok = false; int l_target_id = argv[0].toInt(&ok); - if (!ok) + if (!ok) { + sendServerMessage("This ID does not look valid. Please use the client ID."); return; + } AOClient* l_target = server->getClientByID(l_target_id); - if (l_target == nullptr) + if (l_target == nullptr) { + sendServerMessage("Unable to locate client with ID " + QString::number(l_target_id) + "."); return; + } l_target->changeCharacter(-1); l_target->sendPacket("DONE"); + sendServerMessage("Client has been forced into character select!"); + } }