9
0
mirror of https://github.com/Samsuik/Sakura.git synced 2026-01-06 15:41:49 +00:00

uncomment entity count tracking

This was commented during the 1.21.5 update while waiting for moonrise.
This commit is contained in:
Samsuik
2025-07-20 23:38:18 +01:00
parent ad704f8f4c
commit 5e5a3d1fe1

View File

@@ -26,8 +26,7 @@ public final class TickInformationCollector {
int entities = 0; int entities = 0;
for (ServerLevel level : levels) { for (ServerLevel level : levels) {
chunks += level.chunkSource.getFullChunksCount(); chunks += level.chunkSource.getFullChunksCount();
// todo 1.21.5 update entities += level.entityTickList.entities.size();
//entities += level.entityTickList.entities.size();
} }
double averageTick = this.tickSamples.longStream() double averageTick = this.tickSamples.longStream()