Merge pull request #184 from Salanto/Fix-#183

Notify target of invite and uninvite
This commit is contained in:
Rose Witchaven 2021-08-10 15:02:12 -05:00 committed by GitHub
commit 2f2f57c8f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
@ -129,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;
}
@ -142,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)