Configurable TPS Catchup

This commit is contained in:
William Blake Galbreath
2025-01-05 15:42:33 -08:00
committed by granny
parent 417ddf761e
commit 676b9dbb76
3 changed files with 18 additions and 37 deletions

View File

@@ -232,4 +232,9 @@ public class PurpurConfig {
loggerSuppressUnrecognizedRecipeErrors = getBoolean("settings.logger.suppress-unrecognized-recipe-errors", loggerSuppressUnrecognizedRecipeErrors);
loggerSuppressSetBlockFarChunk = getBoolean("settings.logger.suppress-setblock-in-far-chunk-errors", loggerSuppressSetBlockFarChunk);
}
public static boolean tpsCatchup = true;
private static void tpsCatchup() {
tpsCatchup = getBoolean("settings.tps-catchup", tpsCatchup);
}
}