Amended range of Zephyr ritual

Fixed Green Grove ritual
Fixed Crusher ritual so it didn't break everything at once.
This commit is contained in:
WayofTime 2016-02-16 11:46:47 -05:00
parent 8f453f6e1e
commit 15650bac8b
5 changed files with 11 additions and 6 deletions

View file

@ -52,7 +52,7 @@ public class RitualGreenGrove extends Ritual
IBlockState state = world.getBlockState(newPos);
Block block = state.getBlock();
if (BloodMagicAPI.getGreenGroveBlacklist().contains(block))
if (!BloodMagicAPI.getGreenGroveBlacklist().contains(block))
{
if (block instanceof IPlantable || block instanceof IGrowable)
{
@ -79,7 +79,7 @@ public class RitualGreenGrove extends Ritual
@Override
public int getRefreshCost()
{
return 20;
return 5; //TODO: Need to find a way to balance this
}
@Override