2021-06-11 12:02:28 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Shane Freeder <theboyetronic@gmail.com>
Date: Thu, 17 Sep 2020 00:36:05 +0100
Subject: [PATCH] Extend block drop capture to capture all items added to the
world
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
2024-01-21 16:39:05 +00:00
index 27977796215779f6412e618c4b439d756a5bef98..1db813af2f6e1bce404fc24f31a18de3e0717247 100644
2021-06-11 12:02:28 +00:00
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
2024-01-21 16:39:05 +00:00
@@ -1512,6 +1512,12 @@ public class ServerLevel extends Level implements WorldGenLevel {
2021-11-24 16:39:04 +00:00
// WorldServer.LOGGER.warn("Tried to add entity {} but it was marked as removed already", EntityTypes.getKey(entity.getType())); // CraftBukkit
2021-06-11 12:02:28 +00:00
return false;
} else {
+ // Paper start - capture all item additions to the world
2021-06-14 14:41:34 +00:00
+ if (captureDrops != null && entity instanceof net.minecraft.world.entity.item.ItemEntity) {
+ captureDrops.add((net.minecraft.world.entity.item.ItemEntity) entity);
2021-06-11 12:02:28 +00:00
+ return true;
+ }
2024-01-20 11:50:16 +00:00
+ // Paper end - capture all item additions to the world
2022-03-13 07:47:54 +00:00
// SPIGOT-6415: Don't call spawn event when reason is null. For example when an entity teleports to a new world.
if (spawnReason != null && !CraftEventFactory.doEntityAddEventCalling(this, entity, spawnReason)) {
2021-06-11 12:02:28 +00:00
return false;
diff --git a/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java b/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
2024-01-21 16:39:05 +00:00
index 5b951937511126d58665c5e2baf18186a7a8d325..60c18af9253607bc51ecb9d23c23e652a9ba36e9 100644
2021-06-11 12:02:28 +00:00
--- a/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
+++ b/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
2023-12-03 03:41:35 +00:00
@@ -431,10 +431,12 @@ public class ServerPlayerGameMode {
2021-06-11 12:02:28 +00:00
// return true; // CraftBukkit
}
// CraftBukkit start
2024-01-20 11:50:16 +00:00
+ java.util.List<net.minecraft.world.entity.item.ItemEntity> itemsToDrop = this.level.captureDrops; // Paper - capture all item additions to the world
+ this.level.captureDrops = null; // Paper - capture all item additions to the world; Remove this earlier so that we can actually drop stuff
2021-06-11 12:02:28 +00:00
if (event.isDropItems()) {
2023-10-26 23:34:58 +00:00
- org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockDropItemEvent(bblock, state, this.player, this.level.captureDrops);
2024-01-20 11:50:16 +00:00
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockDropItemEvent(bblock, state, this.player, itemsToDrop); // Paper - capture all item additions to the world
2021-06-11 12:02:28 +00:00
}
2023-10-26 23:34:58 +00:00
- this.level.captureDrops = null;
2024-01-20 11:50:16 +00:00
+ //this.level.captureDrops = null; // Paper - capture all item additions to the world; move up
2021-06-11 12:02:28 +00:00
// Drop event experience
if (flag && event != null) {