fix: Increase entity network limit to 16k entities (#1492)

This commit is contained in:
DrPerkyLegit 2026-04-12 23:50:46 -04:00 committed by GitHub
parent c7014f6b18
commit 82c1ae1968
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 35 additions and 27 deletions

View file

@ -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();