Fix Sacrificial Runes not affect sacrifice amount (#713)

This commit is contained in:
Nick 2016-04-17 00:03:53 -07:00
parent 8ddd95b294
commit 458f8810b6
3 changed files with 7 additions and 5 deletions

View file

@ -148,7 +148,7 @@ public class ItemSacrificialDagger extends Item implements IVariantProvider
return super.onItemRightClick(stack, world, player, hand);
// TODO - Check if SoulFray is active
PlayerSacrificeHelper.findAndFillAltar(world, player, lpAdded);
PlayerSacrificeHelper.findAndFillAltar(world, player, lpAdded, false);
return super.onItemRightClick(stack, world, player, hand);
}