2019-07-20 06:01:24 +02:00
|
|
|
From 57d2c6e11b7ac54355e761d06b3ace6f2b1b7df6 Mon Sep 17 00:00:00 2001
|
2018-07-23 13:08:02 +02:00
|
|
|
From: Hugo Manrique <hugmanrique@gmail.com>
|
|
|
|
Date: Mon, 23 Jul 2018 12:57:39 +0200
|
|
|
|
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
|
2019-07-20 06:01:24 +02:00
|
|
|
index fc0455934b..09607fb447 100644
|
2018-07-23 13:08:02 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-07-03 22:44:07 +02:00
|
|
|
@@ -321,6 +321,11 @@ public class PaperWorldConfig {
|
2018-07-23 13:08:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public boolean armorStandEntityLookups = true;
|
|
|
|
+ private void armorStandEntityLookups() {
|
|
|
|
+ armorStandEntityLookups = getBoolean("armor-stands-do-collision-entity-lookups", true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
public int maxCollisionsPerEntity;
|
|
|
|
private void maxEntityCollision() {
|
|
|
|
maxCollisionsPerEntity = getInt( "max-entity-collisions", this.spigotConfig.getInt("max-entity-collisions", 8) );
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 627fec10a8..cacc18ca41 100644
|
2018-07-23 13:08:02 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -868,6 +868,14 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2019-05-14 04:20:58 +02:00
|
|
|
}
|
2018-07-23 13:08:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Prevent armor stands from doing entity lookups
|
|
|
|
+ @Override
|
|
|
|
+ public boolean getCubes(@Nullable Entity entity, AxisAlignedBB axisAlignedBB) {
|
|
|
|
+ if (entity instanceof EntityArmorStand && !entity.world.paperConfig.armorStandEntityLookups) return false;
|
|
|
|
+ return GeneratorAccess.super.getCubes(entity, axisAlignedBB);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
public boolean a(AxisAlignedBB axisalignedbb) {
|
2018-10-23 01:16:21 +02:00
|
|
|
int i = MathHelper.floor(axisalignedbb.minX);
|
|
|
|
int j = MathHelper.f(axisalignedbb.maxX);
|
2018-07-23 13:08:02 +02:00
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-07-23 13:08:02 +02:00
|
|
|
|