From 8211ab352ea9ec6d38938fb4d436aa312b65542d Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Tue, 10 Aug 2021 19:18:26 +0200 Subject: [PATCH] Send OOC message on success of /pm Send OOC message on success of /pm Add missing space in message layout --- core/src/commands/messaging.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/commands/messaging.cpp b/core/src/commands/messaging.cpp index c3d5cbb..e9b317f 100644 --- a/core/src/commands/messaging.cpp +++ b/core/src/commands/messaging.cpp @@ -141,6 +141,7 @@ void AOClient::cmdPM(int arc, QStringList argv) } QString message = argv.join(" "); //...which means it will not end up as part of the message target_client->sendServerMessage("Message from " + ooc_name + " (" + QString::number(id) + "): " + message); + sendServerMessage("PM sent to " + QString::number(target_id) +". Message: " + message); } void AOClient::cmdAnnounce(int argc, QStringList argv)