mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-08 08:02:13 -07:00
Added Enchantment.values() for retrieving all enchantments
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
@@ -226,4 +226,13 @@ public abstract class Enchantment {
|
|||||||
public static Enchantment getByName(String name) {
|
public static Enchantment getByName(String name) {
|
||||||
return byName.get(name);
|
return byName.get(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets an array of all the registered {@link Enchantment}s
|
||||||
|
*
|
||||||
|
* @return Array of enchantments
|
||||||
|
*/
|
||||||
|
public static Enchantment[] values() {
|
||||||
|
return byId.values().toArray(new Enchantment[byId.size()]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user