Fixed double static EnchantmentTarget

This commit is contained in:
Auxilor 2021-01-31 14:02:11 +00:00
parent a474b51a25
commit 811488244a

View File

@ -24,10 +24,6 @@ public class EnchantmentTarget implements Registerable {
*/
public static final EnchantmentTarget ALL = new EnchantmentTarget("all", new HashSet<>());
static {
REGISTERED.add(ALL);
}
/**
* The name of the target.
*/
@ -96,6 +92,7 @@ public class EnchantmentTarget implements Registerable {
}
static {
REGISTERED.add(ALL);
update();
}
}