-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0ef3ca
commit 07a8bb0
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Jake Potrebic <jake.m.potrebic@gmail.com> | ||
Date: Tue, 9 Jul 2024 18:37:37 -0700 | ||
Subject: [PATCH] Add ItemType#getItemRarity | ||
|
||
|
||
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemType.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemType.java | ||
index bae3dd5fc67e6b3d98a5e63ffbf639c5042f8843..450c63c31d2f5d056d989aa00452231f50c8224d 100644 | ||
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemType.java | ||
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemType.java | ||
@@ -265,4 +265,12 @@ public class CraftItemType<M extends ItemMeta> implements ItemType.Typed<M>, Han | ||
return this.item.getDescriptionId(); | ||
} | ||
// Paper end - add Translatable | ||
+ | ||
+ // Paper start - expand ItemRarity API | ||
+ @Override | ||
+ public org.bukkit.inventory.ItemRarity getItemRarity() { | ||
+ final net.minecraft.world.item.Rarity rarity = this.item.components().get(DataComponents.RARITY); | ||
+ return rarity == null ? null : org.bukkit.inventory.ItemRarity.valueOf(rarity.name()); | ||
+ } | ||
+ // Paper end - expand ItemRarity API | ||
} |