Configurable xp orb merge group count (#12503)

This commit is contained in:
Mart
2025-05-03 18:51:19 +00:00
committed by GitHub
parent 6f1f5b67e0
commit 88a3a87015
4 changed files with 34 additions and 4 deletions

View File

@ -356,6 +356,9 @@ public class GlobalConfiguration extends ConfigurationPart {
public IntOr.Default compressionLevel = IntOr.Default.USE_DEFAULT;
@Comment("Defines the leniency distance added on the server to the interaction range of a player when validating interact packets.")
public DoubleOr.Default clientInteractionLeniencyDistance = DoubleOr.Default.USE_DEFAULT;
@Comment("Defines how many orbs groups can exist in an area.")
@Constraints.Min(1)
public IntOr.Default xpOrbGroupsPerArea = IntOr.Default.USE_DEFAULT;
}
public BlockUpdates blockUpdates;