From e808b3e2ae5a9e3f2abc3fa9403d599433f71f10 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 6 Jan 2017 14:04:34 -0500 Subject: [PATCH] v0.5.0: fixed item throw vfx going where items are aimed, not where they land --- .../com/shatteredpixel/shatteredpixeldungeon/items/Item.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Item.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Item.java index bf0983c94..6b6cca4aa 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Item.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Item.java @@ -516,7 +516,7 @@ public class Item implements Bundlable { } else { ((MissileSprite) user.sprite.parent.recycle(MissileSprite.class)). reset(user.sprite, - dst, + cell, this, new Callback() { @Override