mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
9ee989ea81
By: md_5 <git@md-5.net>
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
--- a/net/minecraft/world/level/block/Block.java
|
|
+++ b/net/minecraft/world/level/block/Block.java
|
|
@@ -354,7 +354,13 @@
|
|
EntityItem entityitem = (EntityItem) supplier.get();
|
|
|
|
entityitem.setDefaultPickUpDelay();
|
|
- world.addFreshEntity(entityitem);
|
|
+ // CraftBukkit start
|
|
+ if (world.captureDrops != null) {
|
|
+ world.captureDrops.add(entityitem);
|
|
+ } else {
|
|
+ world.addFreshEntity(entityitem);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
|
|
@@ -380,7 +386,7 @@
|
|
|
|
public void playerDestroy(World world, EntityHuman entityhuman, BlockPosition blockposition, IBlockData iblockdata, @Nullable TileEntity tileentity, ItemStack itemstack) {
|
|
entityhuman.awardStat(StatisticList.BLOCK_MINED.get(this));
|
|
- entityhuman.causeFoodExhaustion(0.005F);
|
|
+ entityhuman.causeFoodExhaustion(0.005F, org.bukkit.event.entity.EntityExhaustionEvent.ExhaustionReason.BLOCK_MINED); // CraftBukkit - EntityExhaustionEvent
|
|
dropResources(iblockdata, world, blockposition, tileentity, entityhuman, itemstack);
|
|
}
|
|
|
|
@@ -520,6 +526,12 @@
|
|
return this.builtInRegistryHolder;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ public int getExpDrop(IBlockData iblockdata, WorldServer worldserver, BlockPosition blockposition, ItemStack itemstack) {
|
|
+ return 0;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
public static final class a {
|
|
|
|
private final IBlockData first;
|