From 969089bf691e7a2fc399d1836e519f3ca6fc9596 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Tue, 10 Aug 2021 19:56:47 +0200 Subject: [PATCH 1/2] Notify target client of invite --- core/src/commands/area.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/commands/area.cpp b/core/src/commands/area.cpp index bf50975..f4524f3 100644 --- a/core/src/commands/area.cpp +++ b/core/src/commands/area.cpp @@ -109,7 +109,9 @@ void AOClient::cmdInvite(int argc, QStringList argv) sendServerMessage("That does not look like a valid ID."); return; } - else if (server->getClientByID(invited_id) == nullptr) { + + AOClient* target_client = server->getClientByID(invited_id); + if (target_client == nullptr) { sendServerMessage("No client with that ID found."); return; } @@ -118,6 +120,7 @@ void AOClient::cmdInvite(int argc, QStringList argv) return; } sendServerMessage("You invited ID " + argv[0]); + target_client->sendServerMessage("You were invited and given access to " + area->name()); } void AOClient::cmdUnInvite(int argc, QStringList argv) From fadafd2588f7d8ecaf6f32210ee156e4df0998f0 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Tue, 10 Aug 2021 20:06:05 +0200 Subject: [PATCH 2/2] Notify target client of uninvite --- core/src/commands/area.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/commands/area.cpp b/core/src/commands/area.cpp index f4524f3..014d506 100644 --- a/core/src/commands/area.cpp +++ b/core/src/commands/area.cpp @@ -132,7 +132,9 @@ void AOClient::cmdUnInvite(int argc, QStringList argv) sendServerMessage("That does not look like a valid ID."); return; } - else if (server->getClientByID(uninvited_id) == nullptr) { + + AOClient* target_client = server->getClientByID(uninvited_id); + if (target_client == nullptr) { sendServerMessage("No client with that ID found."); return; } @@ -145,6 +147,7 @@ void AOClient::cmdUnInvite(int argc, QStringList argv) return; } sendServerMessage("You uninvited ID " + argv[0]); + target_client->sendServerMessage("You were uninvited from " + area->name()); } void AOClient::cmdLock(int argc, QStringList argv)