Maybe fix characters becoming unselectable (#321)

* Maybe fix characters becoming unselectable

Prevents early-selection while the client is still in the handshake.

* Clang
This commit is contained in:
Salanto 2022-10-01 23:14:45 +02:00 committed by GitHub
parent 4d4d0fa681
commit 6c3f696aaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,11 @@ void PacketCC::handlePacket(AreaData *area, AOClient &client) const
{ {
Q_UNUSED(area) Q_UNUSED(area)
if (!client.hasJoined()) {
// No character selecting when you aren't joined.
return;
}
bool argument_ok; bool argument_ok;
int l_selected_char_id = m_content[1].toInt(&argument_ok); int l_selected_char_id = m_content[1].toInt(&argument_ok);
if (!argument_ok) { if (!argument_ok) {