9
0
mirror of https://github.com/LeavesMC/Leaves.git synced 2025-12-29 03:49:10 +00:00

fix: revert Configurable-collision-behavior patch (#607)

Co-authored-by: violetc <58360096+s-yh-china@users.noreply.github.com>
This commit is contained in:
MC_XiaoHei
2025-07-23 19:05:32 +08:00
committed by GitHub
parent a416f476d3
commit bfde470a86
2 changed files with 61 additions and 1 deletions

View File

@@ -1178,7 +1178,13 @@ public final class LeavesConfig {
@GlobalConfig("vanilla-fluid-pushing")
public boolean vanillaFluidPushing = true;
@RemovedConfig(name = "collision-behavior", category = "fix")
@GlobalConfig(value = "collision-behavior")
public CollisionBehavior collisionBehavior = CollisionBehavior.BLOCK_SHAPE_VANILLA;
public enum CollisionBehavior {
VANILLA, BLOCK_SHAPE_VANILLA, PAPER
}
@RemovedConfig(name = "spigot-EndPlatform-destroy", category = "fix")
private final boolean removed = false;
}