mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
Update Alternate Current to v1.9 (#11333)
This commit is contained in:
@@ -1982,6 +1982,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ public boolean updatePathfindingOnBlockUpdate = true;
|
||||
+ public boolean showSignClickCommandFailureMsgsToPlayer = false;
|
||||
+ public RedstoneImplementation redstoneImplementation = RedstoneImplementation.VANILLA;
|
||||
+ public AlternateCurrentUpdateOrder alternateCurrentUpdateOrder = AlternateCurrentUpdateOrder.HORIZONTAL_FIRST_OUTWARD;
|
||||
+ public boolean disableEndCredits = false;
|
||||
+ public DoubleOr.Default maxLeashDistance = DoubleOr.Default.USE_DEFAULT;
|
||||
+ public boolean disableSprintInterruptionOnAttack = false;
|
||||
@@ -1991,6 +1992,10 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ public enum RedstoneImplementation {
|
||||
+ VANILLA, EIGENCRAFT, ALTERNATE_CURRENT
|
||||
+ }
|
||||
+
|
||||
+ public enum AlternateCurrentUpdateOrder {
|
||||
+ HORIZONTAL_FIRST_OUTWARD, HORIZONTAL_FIRST_INWARD, VERTICAL_FIRST_OUTWARD, VERTICAL_FIRST_INWARD
|
||||
+ }
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/configuration/constraint/Constraint.java b/src/main/java/io/papermc/paper/configuration/constraint/Constraint.java
|
||||
|
Reference in New Issue
Block a user