mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
24 lines
786 B
Diff
24 lines
786 B
Diff
--- a/net/minecraft/server/TileEntitySkull.java
|
|
+++ b/net/minecraft/server/TileEntitySkull.java
|
|
@@ -119,13 +119,19 @@
|
|
}
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
public static void a(IBlockAccess iblockaccess, BlockPosition blockposition) {
|
|
+ setShouldDrop(iblockaccess, blockposition, false);
|
|
+ }
|
|
+
|
|
+ public static void setShouldDrop(IBlockAccess iblockaccess, BlockPosition blockposition, boolean flag) {
|
|
+ // CraftBukkit end
|
|
TileEntity tileentity = iblockaccess.getTileEntity(blockposition);
|
|
|
|
if (tileentity instanceof TileEntitySkull) {
|
|
TileEntitySkull tileentityskull = (TileEntitySkull) tileentity;
|
|
|
|
- tileentityskull.drop = false;
|
|
+ tileentityskull.drop = flag; // CraftBukkit
|
|
}
|
|
|
|
}
|