2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-06-06 05:01:16 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Tue, 5 Jun 2018 22:59:50 -0400
|
|
|
|
Subject: [PATCH] ItemStack#getMaxItemUseDuration
|
|
|
|
|
|
|
|
Allows you to determine how long it takes to use a usable/consumable item
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java
|
2020-05-06 11:48:49 +02:00
|
|
|
index e9ba311522a50572e6f1cb4554ba8e24a55cbb8a..125b74dd8263ab04a5df51764726efda15c1fca7 100644
|
2018-06-06 05:01:16 +02:00
|
|
|
--- a/src/main/java/org/bukkit/inventory/ItemStack.java
|
|
|
|
+++ b/src/main/java/org/bukkit/inventory/ItemStack.java
|
2020-01-22 04:06:28 +01:00
|
|
|
@@ -621,5 +621,13 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
|
2018-06-06 05:01:16 +02:00
|
|
|
public String getI18NDisplayName() {
|
|
|
|
return Bukkit.getServer().getItemFactory().getI18NDisplayName(this);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int getMaxItemUseDuration() {
|
2018-07-14 03:44:35 +02:00
|
|
|
+ if (type == null || type == Material.AIR || !type.isItem()) {
|
2018-06-06 05:01:16 +02:00
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ // Requires access to NMS
|
|
|
|
+ return ensureServerConversions().getMaxItemUseDuration();
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
}
|