mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 14:36:40 -04:00
[Server] Do not allow to connect with an empty plugin list
This commit is contained in:
parent
b5c957c473
commit
2e227c7af5
@ -229,7 +229,7 @@ bool Networking::preInit(RakNet::Packet *packet, RakNet::BitStream &bsIn)
|
||||
packetPreInit.setChecksums(&plugins);
|
||||
packetPreInit.Read();
|
||||
|
||||
if (!packetPreInit.isPacketValid())
|
||||
if (!packetPreInit.isPacketValid() || plugins.empty())
|
||||
{
|
||||
LOG_APPEND(Log::LOG_ERROR, "Invalid packetPreInit");
|
||||
peer->CloseConnection(packet->systemAddress, false); // close connection without notification
|
||||
|
Loading…
x
Reference in New Issue
Block a user