Patrone.cc-src-skid-me/toothless/server/nms-patches/BlockJukeBox.patch

15 lines
436 B
Diff
Raw Normal View History

2019-06-19 05:50:21 +02:00
--- a/net/minecraft/server/BlockJukeBox.java
+++ b/net/minecraft/server/BlockJukeBox.java
@@ -136,6 +136,11 @@
}
public void setRecord(ItemStack itemstack) {
+ // CraftBukkit start - There can only be one
+ if (itemstack != null) {
+ itemstack.count = 1;
+ }
+ // CraftBukkit end
this.record = itemstack;
this.update();
}