mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-21 02:17:42 +01:00
Updated Upstream (Paper)
Upstream has released updates that appear to apply and compile correctly Paper Changes:a219c497bdDont register multiple ASK_SERVER suggestions under one parent node (#7188)329912b816Expose isFuel and canSmelt methods to FurnaceInventory (#7181)7b833ca18fFix bees aging inside hives (#6466)a99a33cdd9Bucketable API (#7204)721f14842f[ci skip] Change test logging settings to log by default (#7203)2d458ee14fCheck player world in endPortalSoundRadius (#6226)686bbd33d4Fix EntityLoadCrossbowEvent Sync Issue (#5739)64f9225c94Fix riding distance statistics (#7021/SPIGOT-6475) (#7033)
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: BillyGalbreath <blake.galbreath@gmail.com>
|
||||
Date: Thu, 23 Dec 2021 15:32:40 -0600
|
||||
Subject: [PATCH] Expose isFuel and canSmelt methods to FurnaceInventory
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/inventory/FurnaceInventory.java b/src/main/java/org/bukkit/inventory/FurnaceInventory.java
|
||||
index 3f46259c1e0f82941ffc3038d1b51be199114abd..b9d4f05980d924a4831b1d213d4963199f5b9a5d 100644
|
||||
--- a/src/main/java/org/bukkit/inventory/FurnaceInventory.java
|
||||
+++ b/src/main/java/org/bukkit/inventory/FurnaceInventory.java
|
||||
@@ -53,6 +53,24 @@ public interface FurnaceInventory extends Inventory {
|
||||
*/
|
||||
void setSmelting(@Nullable ItemStack stack);
|
||||
|
||||
+ // Paper start
|
||||
+ /**
|
||||
+ * Check if an item can be used as a fuel source in this furnace container
|
||||
+ *
|
||||
+ * @param item Item to check
|
||||
+ * @return True if a valid fuel source
|
||||
+ */
|
||||
+ public boolean isFuel(@Nullable ItemStack item);
|
||||
+
|
||||
+ /**
|
||||
+ * Check if an item can be smelted in this furnace container
|
||||
+ *
|
||||
+ * @param item Item to check
|
||||
+ * @return True if can be smelt
|
||||
+ */
|
||||
+ public boolean canSmelt(@Nullable ItemStack item);
|
||||
+ // Paper end
|
||||
+
|
||||
@Override
|
||||
@Nullable
|
||||
Furnace getHolder();
|
||||
Reference in New Issue
Block a user