2021-08-10 04:13:58 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
|
|
|
|
Date: Wed, 2 Dec 2020 03:07:58 -0800
|
|
|
|
Subject: [PATCH] Config option for Piglins guarding chests
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-08-25 01:45:40 +02:00
|
|
|
index ea397cd57ccbf7efc4f31d532cd6dfdccfcee8d8..0f91fbf2ae9735943d3214e8d26c1951cf0b5160 100644
|
2021-08-10 04:13:58 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
@@ -54,6 +54,11 @@ public class PaperWorldConfig {
|
|
|
|
zombiesTargetTurtleEggs = getBoolean("zombies-target-turtle-eggs", zombiesTargetTurtleEggs);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public boolean piglinsGuardChests = true;
|
|
|
|
+ private void piglinsGuardChests() {
|
|
|
|
+ piglinsGuardChests = getBoolean("piglins-guard-chests", piglinsGuardChests);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
public boolean useEigencraftRedstone = false;
|
|
|
|
private void useEigencraftRedstone() {
|
|
|
|
useEigencraftRedstone = this.getBoolean("use-faster-eigencraft-redstone", false);
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/monster/piglin/PiglinAi.java b/src/main/java/net/minecraft/world/entity/monster/piglin/PiglinAi.java
|
|
|
|
index 4330ccefe92c76a516f42a81b38536cf3312be5b..7fa5cde9c26c21d4d800f720f373a8b702f4fcb5 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/piglin/PiglinAi.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/piglin/PiglinAi.java
|
|
|
|
@@ -468,6 +468,7 @@ public class PiglinAi {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void angerNearbyPiglins(Player player, boolean blockOpen) {
|
|
|
|
+ if (!player.level.paperConfig.piglinsGuardChests) return; // Paper
|
|
|
|
List<AbstractPiglin> list = (List) player.level.getEntitiesOfClass(Piglin.class, player.getBoundingBox().inflate(16.0D)); // CraftBukkit - decompile error
|
|
|
|
|
|
|
|
list.stream().filter(PiglinAi::isIdle).filter((entitypiglin) -> {
|