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

@ -32,7 +32,7 @@ public class RitualWater extends Ritual
int maxEffects = currentEssence / getRefreshCost();
int totalEffects = 0;
AreaDescriptor waterRange = getBlockRange(WATER_RANGE);
for (BlockPos newPos : waterRange.getContainedPositions(masterRitualStone.getPos()))
@ -42,13 +42,13 @@ public class RitualWater extends Ritual
world.setBlockState(newPos, Blocks.water.getDefaultState());
totalEffects++;
}
if (totalEffects >= maxEffects)
{
break;
}
}
network.syphon(getRefreshCost() * totalEffects);
}
@ -73,7 +73,7 @@ public class RitualWater extends Ritual
return components;
}
@Override
public Ritual getNewCopy()
{