2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-07-23 11:08:02 +00: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
|
2020-05-06 09:48:49 +00:00
|
|
|
index 387e0dcb9f01ad947daaa19211331a96742ce004..eaaa51e4bf761f41fd516402ce1ad0f903c6ab71 100644
|
2018-07-23 11:08:02 +00:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-01-18 17:28:32 +00:00
|
|
|
@@ -388,4 +388,9 @@ public class PaperWorldConfig {
|
2019-12-12 00:03:31 +00:00
|
|
|
log("Bed Search Radius: " + bedSearchRadius);
|
2018-07-23 11:08:02 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-12 00:03:31 +00:00
|
|
|
+
|
2018-07-23 11:08:02 +00:00
|
|
|
+ public boolean armorStandEntityLookups = true;
|
|
|
|
+ private void armorStandEntityLookups() {
|
|
|
|
+ armorStandEntityLookups = getBoolean("armor-stands-do-collision-entity-lookups", true);
|
|
|
|
+ }
|
2019-12-12 00:03:31 +00:00
|
|
|
}
|
2018-07-23 11:08:02 +00:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2020-05-06 09:48:49 +00:00
|
|
|
index a1c33c525ce8ae0f4736198658174f8d67ab6320..2261c42ab69e260d3533cdff1149b83acea8ccb4 100644
|
2018-07-23 11:08:02 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2020-04-08 07:49:15 +00:00
|
|
|
@@ -781,6 +781,14 @@ public abstract class World implements GeneratorAccess, AutoCloseable {
|
2019-05-14 02:20:58 +00:00
|
|
|
}
|
2018-07-23 11:08:02 +00: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;
|
2019-12-12 03:00:50 +00:00
|
|
|
+ return GeneratorAccess.super.getCubes(entity, axisAlignedBB);
|
2018-07-23 11:08:02 +00:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-12-12 00:03:31 +00:00
|
|
|
public boolean b(AxisAlignedBB axisalignedbb) {
|
2018-10-22 23:16:21 +00:00
|
|
|
int i = MathHelper.floor(axisalignedbb.minX);
|
|
|
|
int j = MathHelper.f(axisalignedbb.maxX);
|