2022-07-04 21:01:17 +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:35:47 -0700
|
|
|
|
Subject: [PATCH] Add various missing EntityDropItemEvent calls
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
2024-02-23 23:13:37 +01:00
|
|
|
index 766ffaa165afe799c027ffac3ffcfc04701d02ab..f56739b5a6a748f1a063a63bc31300dd75aaf8d7 100644
|
2022-07-04 21:01:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
2024-02-23 23:13:37 +01:00
|
|
|
@@ -2491,6 +2491,14 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource, S
|
2022-07-04 21:01:17 +02:00
|
|
|
stack.setCount(0); // Paper - destroy this item - if this ever leaks due to game bugs, ensure it doesn't dupe
|
|
|
|
|
|
|
|
entityitem.setDefaultPickUpDelay();
|
2024-01-18 15:56:25 +01:00
|
|
|
+ // Paper start - Call EntityDropItemEvent
|
2022-07-04 21:01:17 +02:00
|
|
|
+ return this.spawnAtLocation(entityitem);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ @Nullable
|
|
|
|
+ public ItemEntity spawnAtLocation(ItemEntity entityitem) {
|
|
|
|
+ {
|
2024-01-18 15:56:25 +01:00
|
|
|
+ // Paper end - Call EntityDropItemEvent
|
2022-07-04 21:01:17 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
EntityDropItemEvent event = new EntityDropItemEvent(this.getBukkitEntity(), (org.bukkit.entity.Item) entityitem.getBukkitEntity());
|
|
|
|
Bukkit.getPluginManager().callEvent(event);
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/Dolphin.java b/src/main/java/net/minecraft/world/entity/animal/Dolphin.java
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
index 1a37be6015fb5c11301850d455a4f3807076c9be..45646c69ea73936a8916756fde37dd3f39db0d04 100644
|
2022-07-04 21:01:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/Dolphin.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/Dolphin.java
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
@@ -593,7 +593,7 @@ public class Dolphin extends WaterAnimal {
|
2022-07-04 21:01:17 +02:00
|
|
|
float f2 = 0.02F * Dolphin.this.random.nextFloat();
|
|
|
|
|
|
|
|
entityitem.setDeltaMovement((double) (0.3F * -Mth.sin(Dolphin.this.getYRot() * 0.017453292F) * Mth.cos(Dolphin.this.getXRot() * 0.017453292F) + Mth.cos(f1) * f2), (double) (0.3F * Mth.sin(Dolphin.this.getXRot() * 0.017453292F) * 1.5F), (double) (0.3F * Mth.cos(Dolphin.this.getYRot() * 0.017453292F) * Mth.cos(Dolphin.this.getXRot() * 0.017453292F) + Mth.sin(f1) * f2));
|
2023-06-08 10:47:19 +02:00
|
|
|
- Dolphin.this.level().addFreshEntity(entityitem);
|
2024-01-18 15:56:25 +01:00
|
|
|
+ Dolphin.this.spawnAtLocation(entityitem); // Paper - Call EntityDropItemEvent
|
2022-07-04 21:01:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/Fox.java b/src/main/java/net/minecraft/world/entity/animal/Fox.java
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
index 4ac32078cb074a78a2bb83307013b849f8d59f23..4c2e090a72dbd5bfb928e6ccbcedb1a25231d5b1 100644
|
2022-07-04 21:01:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/Fox.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/Fox.java
|
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10277)
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
9a80d38c SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-722: Add EntityRemoveEvent
258086d9 SPIGOT-7417, PR-967: Add Sign#getTargetSide and Sign#getAllowedEditor
ffaba051 SPIGOT-7584: Add missing Tag.ITEMS_NON_FLAMMABLE_WOOD
CraftBukkit Changes:
98b6c1ac7 SPIGOT-7589 Fix NullPointerException when bans expire
a2736ddb0 SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, PR-1008: Add EntityRemoveEvent
5bf12cb89 SPIGOT-7565: Throw a more descriptive error message when a developer tries to spawn an entity from a CraftBukkit class
76d95fe7e SPIGOT-7417, PR-1343: Add Sign#getTargetSide and Sign#getAllowedEditor
Spigot Changes:
e9ec5485 Rebuild patches
f1b62e0c Rebuild patches
2024-02-23 14:37:33 +01:00
|
|
|
@@ -513,14 +513,14 @@ public class Fox extends Animal implements VariantHolder<Fox.Type> {
|
2022-07-04 21:01:17 +02:00
|
|
|
entityitem.setPickUpDelay(40);
|
2023-12-06 17:21:56 +01:00
|
|
|
entityitem.setThrower(this);
|
2022-07-04 21:01:17 +02:00
|
|
|
this.playSound(SoundEvents.FOX_SPIT, 1.0F, 1.0F);
|
2023-06-08 10:47:19 +02:00
|
|
|
- this.level().addFreshEntity(entityitem);
|
2024-01-18 15:56:25 +01:00
|
|
|
+ this.spawnAtLocation(entityitem); // Paper - Call EntityDropItemEvent
|
2022-07-04 21:01:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void dropItemStack(ItemStack stack) {
|
2023-06-08 10:47:19 +02:00
|
|
|
ItemEntity entityitem = new ItemEntity(this.level(), this.getX(), this.getY(), this.getZ(), stack);
|
2022-07-04 21:01:17 +02:00
|
|
|
|
2023-06-08 10:47:19 +02:00
|
|
|
- this.level().addFreshEntity(entityitem);
|
2024-01-18 15:56:25 +01:00
|
|
|
+ this.spawnAtLocation(entityitem); // Paper - Call EntityDropItemEvent
|
2022-07-04 21:01:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2022-07-04 21:26:43 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/goat/Goat.java b/src/main/java/net/minecraft/world/entity/animal/goat/Goat.java
|
2024-01-19 12:30:04 +01:00
|
|
|
index ee1b2c1fec4b76a821e1d52fbb07e1f302b2efa1..110dd5418b0512a2f27f0c4d5a5f1812356a6a12 100644
|
2022-07-04 21:26:43 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/goat/Goat.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/goat/Goat.java
|
2023-09-22 17:35:51 +02:00
|
|
|
@@ -357,8 +357,7 @@ public class Goat extends Animal {
|
2022-07-04 21:26:43 +02:00
|
|
|
double d2 = (double) Mth.randomBetween(this.random, -0.2F, 0.2F);
|
2023-06-08 10:47:19 +02:00
|
|
|
ItemEntity entityitem = new ItemEntity(this.level(), vec3d.x(), vec3d.y(), vec3d.z(), itemstack, d0, d1, d2);
|
2022-07-04 21:26:43 +02:00
|
|
|
|
2023-06-08 10:47:19 +02:00
|
|
|
- this.level().addFreshEntity(entityitem);
|
2022-07-04 21:26:43 +02:00
|
|
|
- return true;
|
2024-01-18 15:56:25 +01:00
|
|
|
+ return this.spawnAtLocation(entityitem) != null; // Paper - Call EntityDropItemEvent
|
2022-07-04 21:26:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-26 22:12:46 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/animal/sniffer/Sniffer.java b/src/main/java/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
2024-01-18 15:56:25 +01:00
|
|
|
index 1d9913cbc7fd0c6e29278b02c38703b52af1245b..0e85e3ab58d848b119212fa7d2eb4f92d3efe29b 100644
|
2023-08-26 22:12:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
2023-09-22 17:35:51 +02:00
|
|
|
@@ -352,8 +352,9 @@ public class Sniffer extends Animal {
|
2023-08-26 22:12:46 +02:00
|
|
|
|
|
|
|
entityitem.setDefaultPickUpDelay();
|
|
|
|
this.finalizeSpawnChildFromBreeding(world, other, (AgeableMob) null);
|
2024-01-18 15:56:25 +01:00
|
|
|
+ if (this.spawnAtLocation(entityitem) != null) { // Paper - Call EntityDropItemEvent
|
2023-08-26 22:12:46 +02:00
|
|
|
this.playSound(SoundEvents.SNIFFER_EGG_PLOP, 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 0.5F);
|
|
|
|
- world.addFreshEntity(entityitem);
|
2024-01-18 15:56:25 +01:00
|
|
|
+ } // Paper - Call EntityDropItemEvent
|
2023-08-26 22:12:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|