mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
18 lines
641 B
Diff
18 lines
641 B
Diff
--- a/net/minecraft/server/ItemRecord.java
|
|
+++ b/net/minecraft/server/ItemRecord.java
|
|
@@ -22,10 +22,14 @@
|
|
if (world.isClientSide) {
|
|
return true;
|
|
} else {
|
|
+ // CraftBukkit Start
|
|
+ /*
|
|
((BlockJukeBox) Blocks.JUKEBOX).a(world, blockposition, iblockdata, itemstack);
|
|
world.a((EntityHuman) null, 1005, blockposition, Item.getId(this));
|
|
--itemstack.count;
|
|
entityhuman.b(StatisticList.X);
|
|
+ */
|
|
+ // CraftBukkit End
|
|
return true;
|
|
}
|
|
} else {
|