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
|
2022-03-11 21:13:46 +01:00
|
|
|
index 4ab8e20efc54e7094e3e0f98109c95252d5e7c01..cdcb877e374bcd2dd944c754bfc91e23ef6986ae 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
|
2022-03-11 21:13:46 +01:00
|
|
|
@@ -750,6 +750,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
|
2022-03-01 04:25:13 +01:00
|
|
|
index 3b5eceaf3a40fee6430864e849d403f5e3c5f9b4..1b678f60ae054f6d9c97ba17f5ffe258d65cccb1 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
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -1403,6 +1403,7 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
2021-12-10 15:24:07 +01:00
|
|
|
}
|
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
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);
|
|
|
|
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -1444,6 +1445,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
|