From 6c3f696aafd35283681dcbb62456aed5c0d1f26b Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Sat, 1 Oct 2022 23:14:45 +0200 Subject: [PATCH] Maybe fix characters becoming unselectable (#321) * Maybe fix characters becoming unselectable Prevents early-selection while the client is still in the handshake. * Clang --- core/src/packet/packet_cc.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/src/packet/packet_cc.cpp b/core/src/packet/packet_cc.cpp index 823ab5e..5d203f2 100644 --- a/core/src/packet/packet_cc.cpp +++ b/core/src/packet/packet_cc.cpp @@ -23,6 +23,11 @@ void PacketCC::handlePacket(AreaData *area, AOClient &client) const { Q_UNUSED(area) + if (!client.hasJoined()) { + // No character selecting when you aren't joined. + return; + } + bool argument_ok; int l_selected_char_id = m_content[1].toInt(&argument_ok); if (!argument_ok) {