9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-25 09:49:28 +00:00

Updated Upstream (Purpur)

Upstream has released updates that appear to apply and compile correctly

Purpur Changes:
PurpurMC/Purpur@d22f66f2 Updated Upstream (Paper)
This commit is contained in:
NONPLAYT
2025-11-14 23:59:58 +03:00
parent 6f4efeb7bd
commit ea56879d1c
9 changed files with 40 additions and 24 deletions

View File

@@ -87,7 +87,9 @@ public final class RegionizedChunkTicking extends ServerChunkCache {
level.tickChunk(chunk, randomTickSpeed);
}
for (Entity entity : region.entities()) {
tickEntity(entity);
if (!entity.moonrise$isUpdatingSectionStatus()) {
tickEntity(entity);
}
}
return regionChunksIDs;