mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-12 01:31:58 +00:00
fix: Increase entity network limit to 16k entities (#1492)
This commit is contained in:
@@ -35,7 +35,7 @@ void MoveEntityPacket::read(DataInputStream *dis) //throws IOException
|
||||
|
||||
void MoveEntityPacket::write(DataOutputStream *dos) //throws IOException
|
||||
{
|
||||
if( (id < 0 ) || (id >= 2048 ) )
|
||||
if( (id < 0 ) || (id >= 16384 ) )
|
||||
{
|
||||
// We shouln't be tracking an entity that doesn't have a short type of id
|
||||
__debugbreak();
|
||||
|
||||
Reference in New Issue
Block a user