Minor fix to crushing ritual. Felling ritual's upkeep cost was reduced.

This commit is contained in:
WayofTime 2016-02-19 20:11:29 -05:00
parent b3636fe12f
commit 8e8562e5a0
2 changed files with 2 additions and 3 deletions

View file

@ -113,11 +113,10 @@ public class RitualCrushing extends Ritual
}
world.setBlockToAir(newPos);
network.syphon(getRefreshCost());
break;
}
network.syphon(getRefreshCost());
}
@Override

View file

@ -77,7 +77,7 @@ public class RitualFelling extends Ritual
@Override
public int getRefreshCost()
{
return 30;
return 10;
}
@Override