2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: lukas81298 <lukas81298@gommehd.net>
|
|
|
|
Date: Mon, 25 Jan 2021 14:37:57 +0100
|
|
|
|
Subject: [PATCH] added option to disable pathfinding updates on block changes
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-06-16 15:14:19 +02:00
|
|
|
index 618acd1b5e65cbff345b35a9ea90f5c77f76436c..4a44e264e817169ed0d8933d3645c3c6439eed81 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-06-16 15:14:19 +02:00
|
|
|
@@ -744,5 +744,10 @@ public class PaperWorldConfig {
|
2021-06-11 14:02:28 +02:00
|
|
|
private void enderDragonsDeathAlwaysPlacesDragonEgg() {
|
|
|
|
enderDragonsDeathAlwaysPlacesDragonEgg = getBoolean("ender-dragons-death-always-places-dragon-egg", enderDragonsDeathAlwaysPlacesDragonEgg);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean updatePathfindingOnBlockUpdate = true;
|
|
|
|
+ private void setUpdatePathfindingOnBlockUpdate() {
|
|
|
|
+ updatePathfindingOnBlockUpdate = getBoolean("update-pathfinding-on-block-update", this.updatePathfindingOnBlockUpdate);
|
|
|
|
+ }
|
|
|
|
}
|
2021-06-15 04:59:31 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2021-06-16 12:14:53 +02:00
|
|
|
index 3d79984d15ee36107522b65f5dcfb4d2fa3538ab..15f92317cfff94eb0d6c585a69f7d3f65c550f21 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2021-06-16 09:19:23 +02:00
|
|
|
@@ -1334,6 +1334,7 @@ public class ServerLevel extends net.minecraft.world.level.Level implements Worl
|
2021-06-11 14:02:28 +02:00
|
|
|
@Override
|
|
|
|
public void sendBlockUpdated(BlockPos pos, BlockState oldState, BlockState newState, int flags) {
|
|
|
|
this.getChunkSource().blockChanged(pos);
|
|
|
|
+ if(this.paperConfig.updatePathfindingOnBlockUpdate) { // Paper - option to disable pathfinding updates
|
|
|
|
VoxelShape voxelshape = oldState.getCollisionShape(this, pos);
|
|
|
|
VoxelShape voxelshape1 = newState.getCollisionShape(this, pos);
|
|
|
|
|
2021-06-16 09:19:23 +02:00
|
|
|
@@ -1361,6 +1362,7 @@ public class ServerLevel extends net.minecraft.world.level.Level implements Worl
|
2021-06-15 04:59:31 +02:00
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
+ } // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|