mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
15 lines
441 B
Diff
15 lines
441 B
Diff
--- a/net/minecraft/server/BlockJukeBox.java
|
|
+++ b/net/minecraft/server/BlockJukeBox.java
|
|
@@ -141,6 +141,11 @@
|
|
}
|
|
|
|
public void setRecord(ItemStack itemstack) {
|
|
+ // CraftBukkit start - There can only be one
|
|
+ if (!itemstack.isEmpty()) {
|
|
+ itemstack.setCount(1);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.record = itemstack;
|
|
this.update();
|
|
}
|