2018-07-04 09:55:24 +02:00
|
|
|
From a3aaaa3233ac457ef6bc4c1373429c28bc66524a 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
|
2018-07-04 09:55:24 +02:00
|
|
|
index 2ba3bcb8e..5f06d4e5e 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
|
2018-05-30 22:31:55 +02:00
|
|
|
@@ -408,4 +408,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
|
2018-07-04 09:55:24 +02:00
|
|
|
index 424b956e8..b85c55168 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-12-09 18:37:09 +01:00
|
|
|
@@ -1335,6 +1335,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) {
|
|
|
|
--
|
2018-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-12-21 18:53:41 +01:00
|
|
|
|