From 4a59dede53c098dd98a7fe0e1ba5f7ab5c06e6b8 Mon Sep 17 00:00:00 2001 From: Phil Date: Wed, 13 Feb 2019 18:59:56 -0500 Subject: [PATCH] Fixed an error where firing a tipped arrow with a sentient bow without (#1542) demon will would still result in the effect of the tipped arrow being multiplied. --- .../WayofTime/bloodmagic/item/soul/ItemSentientBow.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java index 71092325..031f5a57 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java @@ -334,9 +334,12 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien ItemArrow itemarrow = ((ItemArrow) (itemstack.getItem() instanceof ItemArrow ? itemstack.getItem() : Items.ARROW)); EntityArrow entityArrow; double amount = (this.getDropOfActivatedBow(stack) * world.rand.nextDouble() + this.getStaticDropOfActivatedBow(stack)); - + float newArrowVelocity = arrowVelocity * getVelocityOfArrow(stack); - if (itemarrow == Items.ARROW) { + + if (getLevel(PlayerDemonWillHandler.getTotalDemonWill(type, player)) <= 0) { + entityArrow = itemarrow.createArrow(world, itemstack, entityLiving); + } else if (itemarrow == Items.ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), (PotionType) null); } else if (itemarrow == Items.TIPPED_ARROW) {