Made Element Protected

• Allows elements to be created by side-plugins
This commit is contained in:
StrangeOne101 2016-02-11 22:00:32 +13:00
parent deca36dea6
commit c05c1987cb

View file

@ -32,7 +32,7 @@ public class Element {
private String name;
private Element(String name) {
protected Element(String name) {
this.name = name;
ALL_ELEMENTS.put(name.toLowerCase(), this);
}