Merge pull request #1041 from peterigz/master

Add missing break for OP_AppCombined switch statement
This commit is contained in:
Alex 2020-04-19 19:23:40 -07:00 committed by GitHub
commit d6af1b566f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -605,6 +605,8 @@ void EQ::Net::DaybreakConnection::ProcessDecodedPacket(const Packet &p)
ProcessDecodedPacket(StaticPacket(current, subpacket_length)); ProcessDecodedPacket(StaticPacket(current, subpacket_length));
current += subpacket_length; current += subpacket_length;
} }
break;
} }
case OP_SessionRequest: case OP_SessionRequest: