Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
Prevent unbounded TickList growth on busy servers (>1000 events/tick). This completes another Bleeding request.
Dieser Commit ist enthalten in:
Ursprung
52c526f313
Commit
cc05bea457
@ -2306,7 +2306,13 @@ public class World implements IBlockAccess {
|
||||
throw new IllegalStateException("TickNextTick list out of synch");
|
||||
} else {
|
||||
if (i > 1000) {
|
||||
i = 1000;
|
||||
// CraftBukkit start - if the server has too much to process over time, try to alleviate that
|
||||
if(i > 20 * 1000) {
|
||||
i = i / 20;
|
||||
} else {
|
||||
i = 1000;
|
||||
}
|
||||
// CraftBukkit end
|
||||
}
|
||||
|
||||
for (int j = 0; j < i; ++j) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren