mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-17 13:24:17 -07:00
Prepare for 1.19 dev
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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/inventory/FurnaceInventory.java
|
||||
+++ b/src/main/java/org/bukkit/inventory/FurnaceInventory.java
|
||||
@@ -0,0 +0,0 @@ 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