Notify target client of invite
This commit is contained in:
parent
d7d5984631
commit
969089bf69
@ -109,7 +109,9 @@ void AOClient::cmdInvite(int argc, QStringList argv)
|
|||||||
sendServerMessage("That does not look like a valid ID.");
|
sendServerMessage("That does not look like a valid ID.");
|
||||||
return;
|
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.");
|
sendServerMessage("No client with that ID found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -118,6 +120,7 @@ void AOClient::cmdInvite(int argc, QStringList argv)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sendServerMessage("You invited ID " + argv[0]);
|
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)
|
void AOClient::cmdUnInvite(int argc, QStringList argv)
|
||||||
|
Loading…
Reference in New Issue
Block a user