Attempt to fix 1.16.3 branch's issues on the repository

Added the original 'wayoftime' folder back, so see if that fixed the multiple folder issue.
This commit is contained in:
WayofTime 2020-10-29 15:50:03 -04:00
parent 6b4145a67c
commit 9fa68e86ae
224 changed files with 24047 additions and 0 deletions

View file

@ -0,0 +1,22 @@
package wayoftime.bloodmagic.ritual;
import java.util.Locale;
import net.minecraft.util.IStringSerializable;
public enum EnumReaderBoundaries implements IStringSerializable
{
SUCCESS, VOLUME_TOO_LARGE, NOT_WITHIN_BOUNDARIES;
@Override
public String toString()
{
return name().toLowerCase(Locale.ROOT);
}
@Override
public String getString()
{
return toString();
}
}