Reformatting with Vindex's magic

This commit is contained in:
WayofTime 2015-12-31 13:50:38 -05:00
parent 67a9d5c1e9
commit e8d1ff4997
18 changed files with 421 additions and 414 deletions

View file

@ -39,12 +39,12 @@ public class AreaDescriptor
{
setOffsets(minimumOffset, maximumOffset);
}
public Rectangle(BlockPos minimumOffset, int sizeX, int sizeY, int sizeZ)
{
this(minimumOffset, minimumOffset.add(sizeX, sizeY, sizeZ));
}
public Rectangle(BlockPos minimumOffset, int size)
{
this(minimumOffset, size, size, size);

View file

@ -112,11 +112,11 @@ public abstract class Ritual
}
/**
* Used to grab the range of a ritual for a given effect.
* Used to grab the range of a ritual for a given effect.
*
* @param range
* - Range that needs to be pulled.
* @return -
* @return -
*/
public AreaDescriptor getBlockRange(String range)
{
@ -165,6 +165,6 @@ public abstract class Ritual
{
REDSTONE, BREAK_MRS, BREAK_STONE, ACTIVATE, DEACTIVATE, EXPLOSION,
}
public abstract Ritual getNewCopy();
}