23
paper-server/nms-patches/TileEntitySkull.patch
Normal file
23
paper-server/nms-patches/TileEntitySkull.patch
Normal file
@@ -0,0 +1,23 @@
|
||||
--- 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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user