2019-07-20 06:01:24 +02:00
|
|
|
From a52dd455c6715e7f965b20e0a7fc6eb099534676 Mon Sep 17 00:00:00 2001
|
2018-09-11 06:07:19 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 10 Sep 2018 23:56:36 -0400
|
|
|
|
Subject: [PATCH] Prevent Mob AI Rules from Loading Chunks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PathfinderGoalRemoveBlock.java b/src/main/java/net/minecraft/server/PathfinderGoalRemoveBlock.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index bf8ca9b32a..7ccb3d5c06 100644
|
2018-09-11 06:07:19 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PathfinderGoalRemoveBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PathfinderGoalRemoveBlock.java
|
2018-11-12 19:23:18 +01:00
|
|
|
@@ -12,11 +12,13 @@ public class PathfinderGoalRemoveBlock extends PathfinderGoalGotoTarget {
|
2019-05-05 10:33:44 +02:00
|
|
|
private final Block g;
|
2018-12-08 11:09:55 +01:00
|
|
|
private final EntityInsentient entity;
|
2019-05-05 10:33:44 +02:00
|
|
|
private int i;
|
2018-09-11 06:07:19 +02:00
|
|
|
+ private World world; // Paper
|
|
|
|
|
|
|
|
public PathfinderGoalRemoveBlock(Block block, EntityCreature entitycreature, double d0, int i) {
|
|
|
|
super(entitycreature, d0, 24, i);
|
2019-05-05 10:33:44 +02:00
|
|
|
this.g = block;
|
2018-12-08 11:09:55 +01:00
|
|
|
this.entity = entitycreature;
|
2018-09-11 06:07:19 +02:00
|
|
|
+ this.world = entitycreature.world; // Paper
|
|
|
|
}
|
|
|
|
|
2019-05-05 10:33:44 +02:00
|
|
|
@Override
|
|
|
|
@@ -114,7 +116,9 @@ public class PathfinderGoalRemoveBlock extends PathfinderGoalGotoTarget {
|
2018-09-11 06:07:19 +02:00
|
|
|
|
|
|
|
@Nullable
|
|
|
|
private BlockPosition a(BlockPosition blockposition, IBlockAccess iblockaccess) {
|
2019-05-05 10:33:44 +02:00
|
|
|
- if (iblockaccess.getType(blockposition).getBlock() == this.g) {
|
2018-09-11 06:07:19 +02:00
|
|
|
+ Block block = world.getBlockIfLoaded(blockposition); // Paper
|
|
|
|
+ if (block == null) return null; // Paper
|
2019-05-05 10:33:44 +02:00
|
|
|
+ if (block == this.g) { // Paper
|
2018-09-11 06:07:19 +02:00
|
|
|
return blockposition;
|
|
|
|
} else {
|
2019-05-28 01:01:45 +02:00
|
|
|
BlockPosition[] ablockposition = new BlockPosition[]{blockposition.down(), blockposition.west(), blockposition.east(), blockposition.north(), blockposition.south(), blockposition.down().down()};
|
2019-05-05 10:33:44 +02:00
|
|
|
@@ -124,7 +128,7 @@ public class PathfinderGoalRemoveBlock extends PathfinderGoalGotoTarget {
|
2018-11-12 19:23:18 +01:00
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
BlockPosition blockposition1 = ablockposition1[j];
|
2018-09-11 06:07:19 +02:00
|
|
|
|
2019-05-05 10:33:44 +02:00
|
|
|
- if (iblockaccess.getType(blockposition1).getBlock() == this.g) {
|
|
|
|
+ if (world.getBlockIfLoaded(blockposition1) == this.g) { // Paper
|
2018-09-11 06:07:19 +02:00
|
|
|
return blockposition1;
|
|
|
|
}
|
|
|
|
}
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -135,7 +139,7 @@ public class PathfinderGoalRemoveBlock extends PathfinderGoalGotoTarget {
|
2018-09-11 06:07:19 +02:00
|
|
|
|
2019-05-05 10:33:44 +02:00
|
|
|
@Override
|
2018-09-11 06:07:19 +02:00
|
|
|
protected boolean a(IWorldReader iworldreader, BlockPosition blockposition) {
|
2019-07-20 06:01:24 +02:00
|
|
|
- IChunkAccess ichunkaccess = iworldreader.getChunkAt(blockposition.getX() >> 4, blockposition.getZ() >> 4, ChunkStatus.FULL, false);
|
|
|
|
+ IChunkAccess ichunkaccess = iworldreader.getChunkIfLoadedImmediately(blockposition.getX() >> 4, blockposition.getZ() >> 4); // Paper
|
2018-11-12 19:23:18 +01:00
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
return ichunkaccess == null ? false : ichunkaccess.getType(blockposition).getBlock() == this.g && ichunkaccess.getType(blockposition.up()).isAir() && ichunkaccess.getType(blockposition.up(2)).isAir();
|
2018-09-11 06:07:19 +02:00
|
|
|
}
|
2018-09-13 03:25:02 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/RandomPositionGenerator.java b/src/main/java/net/minecraft/server/RandomPositionGenerator.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 6e4da70b7e..643dc0241d 100644
|
2018-09-13 03:25:02 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/RandomPositionGenerator.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/RandomPositionGenerator.java
|
2019-06-25 03:47:58 +02:00
|
|
|
@@ -99,6 +99,7 @@ public class RandomPositionGenerator {
|
2018-09-13 03:58:38 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 03:47:58 +02:00
|
|
|
blockposition2 = new BlockPosition((double) l + entitycreature.locX, (double) i1 + entitycreature.locY, (double) j1 + entitycreature.locZ);
|
2019-06-28 12:33:17 +02:00
|
|
|
+ if (!entitycreature.world.isLoaded(blockposition2)) continue; // Paper
|
2019-06-25 03:47:58 +02:00
|
|
|
if ((!flag1 || entitycreature.a(blockposition2)) && navigationabstract.a(blockposition2)) {
|
2018-09-13 03:58:38 +02:00
|
|
|
if (!flag) {
|
2019-06-25 03:47:58 +02:00
|
|
|
blockposition2 = a(blockposition2, entitycreature);
|
|
|
|
@@ -165,6 +166,7 @@ public class RandomPositionGenerator {
|
2018-09-13 03:25:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean b(BlockPosition blockposition, EntityCreature entitycreature) {
|
2018-12-08 11:09:55 +01:00
|
|
|
- return entitycreature.world.getFluid(blockposition).a(TagsFluid.WATER);
|
2018-09-13 03:25:02 +02:00
|
|
|
+ Fluid fluid = entitycreature.world.getFluidIfLoaded(blockposition); // Paper
|
|
|
|
+ return fluid != null && fluid.a(TagsFluid.WATER); // Paper
|
|
|
|
}
|
|
|
|
}
|
2018-09-11 06:07:19 +02:00
|
|
|
--
|
2019-07-17 00:09:32 +02:00
|
|
|
2.22.0
|
2018-09-11 06:07:19 +02:00
|
|
|
|