2019-03-20 01:28:15 +01:00
|
|
|
From 25cbaf39e7634f8faad5ebb998a201df436baa71 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
|
2019-03-20 01:28:15 +01:00
|
|
|
index b1c02ac0d..1c7bbbcef 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
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -607,5 +607,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
|
|
|
|
}
|
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2018-06-06 05:01:16 +02:00
|
|
|
|