diff --git a/changelog.txt b/changelog.txt index 175ce454..e4d09b1a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,7 +7,7 @@ Version 2.0.0-32 - Added Charging Strike, which increases knockback and damage for attacks while sprinting - Added True Strike, increasing the damage of critical hits - Updated for Forge 12.16.0.1859 - +- Did some work on the Sentient Bow to start adding abilities to it ------------------------------------------------------ Version 2.0.0-31 ------------------------------------------------------ diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java b/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java index 486f938c..893c46c8 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java @@ -169,7 +169,7 @@ public class ItemSacrificialDagger extends Item implements IVariantProvider return ret; } - private void findAndFillAltar(World world, EntityPlayer player, int amount) + protected void findAndFillAltar(World world, EntityPlayer player, int amount) { BlockPos pos = player.getPosition(); IBloodAltar altarEntity = getAltar(world, pos);