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:
parent
4d4d0fa681
commit
6c3f696aaf
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user