diff options
-rw-r--r-- | src/main/java/org/bukkit/loot/LootTables.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/loot/LootTables.java b/src/main/java/org/bukkit/loot/LootTables.java index 613a198e..6e5e4d8e 100644 --- a/src/main/java/org/bukkit/loot/LootTables.java +++ b/src/main/java/org/bukkit/loot/LootTables.java @@ -1,5 +1,6 @@ package org.bukkit.loot; +import org.bukkit.Bukkit; import org.bukkit.Keyed; import org.bukkit.NamespacedKey; @@ -125,4 +126,14 @@ public enum LootTables implements Keyed { public NamespacedKey getKey() { return NamespacedKey.minecraft(location); } + + /** + * Get the {@link LootTable} corresponding to this constant. This is + * equivalent to calling {@code Bukkit.getLootTable(this.getKey());}. + * + * @return the associated LootTable + */ + public LootTable getLootTable() { + return Bukkit.getLootTable(getKey()); + } } |