3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00
Paper/nms-patches/BlockJukeBox.patch

15 Zeilen
441 B
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/BlockJukeBox.java
+++ b/net/minecraft/server/BlockJukeBox.java
2016-11-17 02:41:03 +01:00
@@ -143,6 +143,11 @@
2015-02-26 23:41:06 +01:00
}
2016-11-17 02:41:03 +01:00
public void setRecord(ItemStack itemstack) {
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start - There can only be one
2016-11-17 02:41:03 +01:00
+ if (!itemstack.isEmpty()) {
+ itemstack.setCount(1);
2015-02-26 23:41:06 +01:00
+ }
+ // CraftBukkit end
this.record = itemstack;
this.update();
}