From ea2cbdfa93a3c122f24f1527e42b7430edd9b563 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 13 Jan 2021 17:51:51 -0500 Subject: [PATCH] v0.9.1d: fixed targeting errors with ethereal chains --- .../shatteredpixeldungeon/items/artifacts/EtherealChains.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java index 3c0f87a88..244d7b21e 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java @@ -72,6 +72,10 @@ public class EtherealChains extends Artifact { return actions; } + public int targetingPos( Hero user, int dst ){ + return dst; + } + @Override public void execute(Hero hero, String action) {