diff --git a/changelog.txt b/changelog.txt index a27029f5..944f6e22 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +------------------------------------------------------ +Version 2.0.0-28 +------------------------------------------------------ +- Fixed the soul snare. + ------------------------------------------------------ Version 2.0.0-27 ------------------------------------------------------ diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java index a4f41840..6f01b507 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java @@ -64,6 +64,6 @@ public class ItemSigilAir extends ItemSigilBase implements ISentientSwordEffectP @Override public boolean providesEffectForWill(EnumDemonWillType type) { - return true; + return false; } } diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java index 7572bec2..6c28d94e 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java @@ -52,7 +52,9 @@ public class ItemSoulSnare extends Item implements IVariantProvider if (!worldIn.isRemote) { - worldIn.spawnEntityInWorld(new EntitySoulSnare(worldIn, playerIn)); + EntitySoulSnare snare = new EntitySoulSnare(worldIn, playerIn); + snare.func_184538_a(playerIn, playerIn.rotationPitch, playerIn.rotationYaw, 0.0F, 1.5F, 1.0F); + worldIn.spawnEntityInWorld(snare); } return new ActionResult(EnumActionResult.SUCCESS, itemStackIn);