2019-01-16 18:06:39 +00:00
|
|
|
From 39afde38725cbe76eb0c828b06220f802e0dcc07 Mon Sep 17 00:00:00 2001
|
2018-12-18 02:20:03 +00:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Tue, 18 Dec 2018 02:15:08 +0000
|
|
|
|
Subject: [PATCH] Prevent Enderman from loading chunks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityEnderman.java b/src/main/java/net/minecraft/server/EntityEnderman.java
|
2019-01-01 03:15:55 +00:00
|
|
|
index e4aba0e0a..945040442 100644
|
2018-12-18 02:20:03 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityEnderman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityEnderman.java
|
2019-01-01 03:15:55 +00:00
|
|
|
@@ -297,7 +297,8 @@ public class EntityEnderman extends EntityMonster {
|
2018-12-18 02:20:03 +00:00
|
|
|
int j = MathHelper.floor(this.enderman.locY + random.nextDouble() * 3.0D);
|
|
|
|
int k = MathHelper.floor(this.enderman.locZ - 2.0D + random.nextDouble() * 4.0D);
|
|
|
|
BlockPosition blockposition = new BlockPosition(i, j, k);
|
|
|
|
- IBlockData iblockdata = world.getType(blockposition);
|
|
|
|
+ IBlockData iblockdata = world.getTypeIfLoaded(blockposition); // Paper
|
|
|
|
+ if (iblockdata == null) return; // Paper
|
|
|
|
Block block = iblockdata.getBlock();
|
|
|
|
MovingObjectPosition movingobjectposition = world.rayTrace(new Vec3D((double) ((float) MathHelper.floor(this.enderman.locX) + 0.5F), (double) ((float) j + 0.5F), (double) ((float) MathHelper.floor(this.enderman.locZ) + 0.5F)), new Vec3D((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F)), FluidCollisionOption.NEVER, true, false);
|
|
|
|
boolean flag = movingobjectposition != null && movingobjectposition.getBlockPosition().equals(blockposition);
|
2019-01-01 03:15:55 +00:00
|
|
|
@@ -335,7 +336,8 @@ public class EntityEnderman extends EntityMonster {
|
2018-12-18 02:20:03 +00:00
|
|
|
int j = MathHelper.floor(this.a.locY + random.nextDouble() * 2.0D);
|
|
|
|
int k = MathHelper.floor(this.a.locZ - 1.0D + random.nextDouble() * 2.0D);
|
|
|
|
BlockPosition blockposition = new BlockPosition(i, j, k);
|
|
|
|
- IBlockData iblockdata = world.getType(blockposition);
|
|
|
|
+ IBlockData iblockdata = world.getTypeIfLoaded(blockposition); // Paper
|
|
|
|
+ if (iblockdata == null) return; // Paper
|
|
|
|
IBlockData iblockdata1 = world.getType(blockposition.down());
|
|
|
|
IBlockData iblockdata2 = Block.getValidBlockForPosition(getEnderman().getCarried(), getEnderman().world, blockposition); // Paper - Fix MC-124320
|
|
|
|
|
|
|
|
--
|
2019-01-16 18:06:39 +00:00
|
|
|
2.16.1.windows.1
|
2018-12-18 02:20:03 +00:00
|
|
|
|