craftbukkit/nms-patches/net/minecraft/world/inventory/SlotFurnaceResult.patch

12 lines
507 B
Diff
Raw Normal View History

2021-03-16 09:00:00 +11:00
--- a/net/minecraft/world/inventory/SlotFurnaceResult.java
+++ b/net/minecraft/world/inventory/SlotFurnaceResult.java
2024-04-24 01:15:00 +10:00
@@ -51,7 +51,7 @@
IInventory iinventory = this.container;
2023-06-08 01:30:00 +10:00
2024-04-24 01:15:00 +10:00
if (iinventory instanceof TileEntityFurnace tileentityfurnace) {
2023-06-08 01:30:00 +10:00
- tileentityfurnace.awardUsedRecipesAndPopExperience(entityplayer);
+ tileentityfurnace.awardUsedRecipesAndPopExperience(entityplayer, itemstack, this.removeCount); // CraftBukkit
}
2019-04-23 12:00:00 +10:00
}