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-11-25 12:20:13 +01:00
|
|
|
index 686a649b23e81c36ae392c79c736eafe22be0c54..168dd88fd1fabff8e63e6429e989dabe2c40cbfa 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-11-25 12:20:13 +01:00
|
|
|
@@ -711,6 +711,11 @@ public class PaperWorldConfig {
|
2021-06-11 14:02:28 +02:00
|
|
|
enderDragonsDeathAlwaysPlacesDragonEgg = getBoolean("ender-dragons-death-always-places-dragon-egg", enderDragonsDeathAlwaysPlacesDragonEgg);
|
|
|
|
}
|
2021-11-24 20:33:17 +01:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public boolean updatePathfindingOnBlockUpdate = true;
|
|
|
|
+ private void setUpdatePathfindingOnBlockUpdate() {
|
|
|
|
+ updatePathfindingOnBlockUpdate = getBoolean("update-pathfinding-on-block-update", this.updatePathfindingOnBlockUpdate);
|
|
|
|
+ }
|
2021-11-24 20:33:17 +01:00
|
|
|
+
|
|
|
|
public boolean phantomIgnoreCreative = true;
|
|
|
|
public boolean phantomOnlyAttackInsomniacs = true;
|
|
|
|
private void phantomSettings() {
|
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-11-25 10:19:05 +01:00
|
|
|
index bfedc4aab1a991d0cffca8e7a816c87c81c6f8d9..3a776dc937d5ea08f5f7343799b00a67af197d2f 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-11-24 20:33:17 +01:00
|
|
|
@@ -1360,6 +1360,7 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
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-11-24 20:33:17 +01:00
|
|
|
@@ -1387,6 +1388,7 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
2021-06-15 04:59:31 +02:00
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
+ } // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|