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

This commit is contained in:
DrPerkyLegit
2026-04-13 00:43:18 -05:00
committed by itsRevela
parent 6c572d4940
commit ae3c843ee5
7 changed files with 35 additions and 27 deletions

View File

@@ -85,7 +85,7 @@ void EntityTracker::addEntity(shared_ptr<Entity> e, int range, int updateInterva
{
assert(false); // Entity already tracked
}
if( e->entityId >= 2048 )
if( e->entityId >= 16384 )
{
__debugbreak();
}