2021-07-22 04:58:24 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Tue, 20 Jul 2021 21:25:35 -0700
|
2024-01-19 13:22:30 +01:00
|
|
|
Subject: [PATCH] Add missing forceDrop toggles
|
2021-07-22 04:58:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/behavior/WorkAtComposter.java b/src/main/java/net/minecraft/world/entity/ai/behavior/WorkAtComposter.java
|
2024-01-19 13:22:30 +01:00
|
|
|
index 012586360a48369dad243dbb8892579a1dbcca90..edeb1899996e53d276d7481e8eddee65249a07d3 100644
|
2021-07-22 04:58:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/ai/behavior/WorkAtComposter.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/ai/behavior/WorkAtComposter.java
|
2023-03-14 21:25:13 +01:00
|
|
|
@@ -87,7 +87,9 @@ public class WorkAtComposter extends WorkAtPoi {
|
|
|
|
simpleContainer.removeItemType(Items.WHEAT, m);
|
|
|
|
ItemStack itemStack = simpleContainer.addItem(new ItemStack(Items.BREAD, l));
|
|
|
|
if (!itemStack.isEmpty()) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ entity.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2023-03-14 21:25:13 +01:00
|
|
|
entity.spawnAtLocation(itemStack, 0.5F);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ entity.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2021-07-22 04:58:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/Panda.java b/src/main/java/net/minecraft/world/entity/animal/Panda.java
|
2024-01-19 13:22:30 +01:00
|
|
|
index 27e1ed14f2ae4f7922c7c3bc1ac21156bafcb0ba..eb61d539fcf15dfc51b3ea52c232a0c7ef4f1ca9 100644
|
2021-07-22 04:58:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/Panda.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/Panda.java
|
2023-09-22 14:22:24 +02:00
|
|
|
@@ -534,7 +534,9 @@ public class Panda extends Animal {
|
2021-07-22 04:58:24 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 04:04:01 +02:00
|
|
|
if (!this.level().isClientSide() && this.random.nextInt(700) == 0 && this.level().getGameRules().getBoolean(GameRules.RULE_DOMOBLOOT)) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2021-07-22 04:58:24 +02:00
|
|
|
this.spawnAtLocation((ItemLike) Items.SLIME_BALL);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2021-07-22 04:58:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-09-22 14:22:24 +02:00
|
|
|
@@ -658,7 +660,9 @@ public class Panda extends Animal {
|
2022-10-27 02:32:03 +02:00
|
|
|
ItemStack itemstack1 = this.getItemBySlot(EquipmentSlot.MAINHAND);
|
|
|
|
|
|
|
|
if (!itemstack1.isEmpty() && !player.getAbilities().instabuild) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
this.spawnAtLocation(itemstack1);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setItemSlot(EquipmentSlot.MAINHAND, new ItemStack(itemstack.getItem(), 1));
|
2023-09-22 14:22:24 +02:00
|
|
|
@@ -940,7 +944,9 @@ public class Panda extends Animal {
|
2022-10-27 02:32:03 +02:00
|
|
|
ItemStack itemstack = Panda.this.getItemBySlot(EquipmentSlot.MAINHAND);
|
|
|
|
|
|
|
|
if (!itemstack.isEmpty()) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ Panda.this.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
Panda.this.spawnAtLocation(itemstack);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ Panda.this.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
Panda.this.setItemSlot(EquipmentSlot.MAINHAND, ItemStack.EMPTY);
|
|
|
|
int i = Panda.this.isLazy() ? Panda.this.random.nextInt(50) + 10 : Panda.this.random.nextInt(150) + 10;
|
|
|
|
|
2021-07-22 04:58:24 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/monster/piglin/Piglin.java b/src/main/java/net/minecraft/world/entity/monster/piglin/Piglin.java
|
2024-01-19 13:22:30 +01:00
|
|
|
index 8231b48a9e88adb2a1ca3441ee81e3d653c9ae78..ea0902b4ba68a89b1f51281b10c1dfd1bfb42833 100644
|
2021-07-22 04:58:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/piglin/Piglin.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/piglin/Piglin.java
|
2023-09-22 14:22:24 +02:00
|
|
|
@@ -317,7 +317,9 @@ public class Piglin extends AbstractPiglin implements CrossbowAttackMob, Invento
|
2021-07-22 04:58:24 +02:00
|
|
|
@Override
|
|
|
|
protected void finishConversion(ServerLevel world) {
|
|
|
|
PiglinAi.cancelAdmiring(this);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2021-07-22 04:58:24 +02:00
|
|
|
this.inventory.removeAllItems().forEach(this::spawnAtLocation);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2021-07-22 04:58:24 +02:00
|
|
|
super.finishConversion(world);
|
|
|
|
}
|
|
|
|
|
2022-10-27 02:32:03 +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
|
2024-01-19 13:22:30 +01:00
|
|
|
index a780b22553a65814c3d8bc21ad68b8bbdbaa3475..e00a1e6031b6de0f6900e004c9e9c97b0d84f8d3 100644
|
2022-10-27 02:32:03 +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-12-07 21:16:54 +01:00
|
|
|
@@ -270,7 +270,9 @@ public class PiglinAi {
|
2022-10-27 02:32:03 +02:00
|
|
|
|
|
|
|
private static void holdInOffhand(Piglin piglin, ItemStack stack) {
|
|
|
|
if (PiglinAi.isHoldingItemInOffHand(piglin)) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ piglin.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
piglin.spawnAtLocation(piglin.getItemInHand(InteractionHand.OFF_HAND));
|
2024-01-19 13:22:30 +01:00
|
|
|
+ piglin.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
piglin.holdInOffHand(stack);
|
2022-12-07 21:16:54 +01:00
|
|
|
@@ -330,7 +332,9 @@ public class PiglinAi {
|
2022-10-27 02:32:03 +02:00
|
|
|
|
|
|
|
protected static void cancelAdmiring(Piglin piglin) {
|
|
|
|
if (PiglinAi.isAdmiringItem(piglin) && !piglin.getOffhandItem().isEmpty()) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ piglin.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
piglin.spawnAtLocation(piglin.getOffhandItem());
|
2024-01-19 13:22:30 +01:00
|
|
|
+ piglin.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
piglin.setItemInHand(InteractionHand.OFF_HAND, ItemStack.EMPTY);
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/raid/Raider.java b/src/main/java/net/minecraft/world/entity/raid/Raider.java
|
2024-01-19 13:22:30 +01:00
|
|
|
index 49e07b33fccfe339712e5d1bd72e6c0edbd2e922..798a774c19361bfaf8583a602192e9e547fa85e8 100644
|
2022-10-27 02:32:03 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/raid/Raider.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/raid/Raider.java
|
|
|
|
@@ -250,7 +250,9 @@ public abstract class Raider extends PatrollingMonster {
|
|
|
|
double d0 = (double) this.getEquipmentDropChance(enumitemslot);
|
|
|
|
|
|
|
|
if (!itemstack1.isEmpty() && (double) Math.max(this.random.nextFloat() - 0.1F, 0.0F) < d0) {
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = true; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
this.spawnAtLocation(itemstack1);
|
2024-01-19 13:22:30 +01:00
|
|
|
+ this.forceDrops = false; // Paper - Add missing forceDrop toggles
|
2022-10-27 02:32:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.onItemPickup(item);
|