mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
58abe21c5a
By: md_5 <git@md-5.net>
14 lines
436 B
Diff
14 lines
436 B
Diff
--- 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();
|
|
}
|