Paper/nms-patches/Block.patch

44 lines
1.6 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/Block.java
+++ b/net/minecraft/server/Block.java
2018-12-25 22:00:00 +01:00
@@ -405,7 +405,8 @@
2018-07-15 02:00:00 +02:00
int j = this.getDropCount(iblockdata, i, world, blockposition, world.random);
for (int k = 0; k < j; ++k) {
2018-07-15 02:00:00 +02:00
- if (f >= 1.0F || world.random.nextFloat() <= f) {
+ // CraftBukkit - <= to < to allow for plugins to completely disable block drops from explosions
2018-07-15 02:00:00 +02:00
+ if (f >= 1.0F || world.random.nextFloat() < f) {
Item item = this.getDropType(iblockdata, world, blockposition, i).getItem();
2018-07-15 02:00:00 +02:00
if (item != Items.AIR) {
2018-12-25 22:00:00 +01:00
@@ -426,7 +427,13 @@
EntityItem entityitem = new EntityItem(world, (double) blockposition.getX() + d0, (double) blockposition.getY() + d1, (double) blockposition.getZ() + d2, itemstack);
2018-07-15 02:00:00 +02:00
entityitem.n();
- world.addEntity(entityitem);
+ // CraftBukkit start
+ if (world.captureDrops != null) {
+ world.captureDrops.add(entityitem);
+ } else {
+ world.addEntity(entityitem);
+ }
+ // CraftBukkit end
}
}
2018-12-25 22:00:00 +01:00
@@ -1394,8 +1401,14 @@
2016-02-29 22:32:46 +01:00
}
2016-02-29 22:32:46 +01:00
+ // CraftBukkit start
2018-07-15 02:00:00 +02:00
+ public int getExpDrop(IBlockData iblockdata, World world, BlockPosition blockposition, int enchantmentLevel) {
+ return 0;
+ }
+ // CraftBukkit end
2016-02-29 22:32:46 +01:00
+
2018-07-15 02:00:00 +02:00
private static void a(MinecraftKey minecraftkey, Block block) {
2018-08-26 04:00:00 +02:00
- IRegistry.BLOCK.a(minecraftkey, (Object) block);
+ IRegistry.BLOCK.a(minecraftkey, block); // CraftBukkit - decompile error
2016-02-29 22:32:46 +01:00
}
2018-08-26 04:00:00 +02:00
private static void a(String s, Block block) {