2017-05-05 01:08:52 +02:00
|
|
|
From 46d75afb644e494d0ca3527f0eb81c7ab7cfea93 Mon Sep 17 00:00:00 2001
|
2016-12-21 18:53:41 +01:00
|
|
|
From: kashike <kashike@vq.lc>
|
|
|
|
Date: Wed, 21 Dec 2016 11:52:04 -0600
|
|
|
|
Subject: [PATCH] Option to prevent armor stands from doing entity lookups
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2017-04-29 12:27:31 +02:00
|
|
|
index bf2916802..61efcc479 100644
|
2016-12-21 18:53:41 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -403,4 +403,9 @@ public class PaperWorldConfig {
|
2016-12-21 18:53:41 +01:00
|
|
|
log("Treasure Maps will return already discovered locations");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean armorStandEntityLookups = true;
|
|
|
|
+ private void armorStandEntityLookups() {
|
|
|
|
+ armorStandEntityLookups = getBoolean("armor-stands-do-collision-entity-lookups", true);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2017-04-29 12:27:31 +02:00
|
|
|
index 7af76e14c..2028cf81e 100644
|
2016-12-21 18:53:41 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2017-03-15 15:32:50 +01:00
|
|
|
@@ -1331,6 +1331,7 @@ public abstract class World implements IBlockAccess {
|
2016-12-21 18:53:41 +01:00
|
|
|
|
|
|
|
this.a(entity, axisalignedbb, false, arraylist);
|
|
|
|
if (entity != null) {
|
|
|
|
+ if (entity instanceof EntityArmorStand && !entity.world.paperConfig.armorStandEntityLookups) return arraylist; // Paper
|
|
|
|
List list = this.getEntities(entity, axisalignedbb.g(0.25D));
|
|
|
|
|
|
|
|
for (int i = 0; i < list.size(); ++i) {
|
|
|
|
--
|
2017-05-05 01:08:52 +02:00
|
|
|
2.12.2
|
2016-12-21 18:53:41 +01:00
|
|
|
|