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
|
2022-06-07 19:03:07 +02:00
|
|
|
index d1a00ef7ef9ffe4f474ce3d5513df912faacf871..ebc8ffcf19a1eb8e1e318df3aca6cc80beacb16f 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
|
2022-06-06 02:17:27 +02:00
|
|
|
@@ -82,6 +82,11 @@ public class PaperWorldConfig {
|
2021-08-10 04:13:58 +02:00
|
|
|
zombiesTargetTurtleEggs = getBoolean("zombies-target-turtle-eggs", zombiesTargetTurtleEggs);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public boolean piglinsGuardChests = true;
|
|
|
|
+ private void piglinsGuardChests() {
|
|
|
|
+ piglinsGuardChests = getBoolean("piglins-guard-chests", piglinsGuardChests);
|
|
|
|
+ }
|
|
|
|
+
|
2022-05-07 19:52:32 +02:00
|
|
|
public enum RedstoneImplementation {
|
|
|
|
VANILLA, EIGENCRAFT
|
|
|
|
}
|
2021-08-10 04:13:58 +02:00
|
|
|
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
|
2022-03-01 06:43:03 +01:00
|
|
|
index 65480f1ee70a55abbb35a88388d9161e366765a5..57f593e5f797d646ceb70fa61ec2e966cf4dabc1 100644
|
2021-08-10 04:13:58 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/piglin/PiglinAi.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/piglin/PiglinAi.java
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -463,6 +463,7 @@ public class PiglinAi {
|
2021-08-10 04:13:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void angerNearbyPiglins(Player player, boolean blockOpen) {
|
|
|
|
+ if (!player.level.paperConfig.piglinsGuardChests) return; // Paper
|
2021-11-25 00:46:26 +01:00
|
|
|
List<Piglin> list = player.level.getEntitiesOfClass(Piglin.class, player.getBoundingBox().inflate(16.0D));
|
2021-08-10 04:13:58 +02:00
|
|
|
|
|
|
|
list.stream().filter(PiglinAi::isIdle).filter((entitypiglin) -> {
|