Fixed so that it now boots properly

This commit is contained in:
WayofTime 2016-03-18 17:20:48 -04:00
parent 239b6e5b1f
commit a71673a60e
3 changed files with 7 additions and 7 deletions

View file

@ -6,11 +6,11 @@ import net.minecraft.util.IStringSerializable;
@Getter
public enum EnumDemonWillType implements IStringSerializable
{
DEFAULT("Default"),
CORROSIVE("Corrosive"),
DESTRUCTIVE("Destructive"),
VENGEFUL("Vengeful"),
STEADFAST("Steadfast");
DEFAULT("default"),
CORROSIVE("corrosive"),
DESTRUCTIVE("destructive"),
VENGEFUL("vengeful"),
STEADFAST("steadfast");
public final String name;