From 579dbf19f83483edc0ef677c4138b6eb48640e9f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 22 Jun 2017 16:06:57 -0400 Subject: [PATCH] v0.6.1: ethereal chains can now pull to solids at diagonals as well --- .../shatteredpixeldungeon/items/artifacts/EtherealChains.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e68880c08..8f7b2e8bf 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 @@ -189,7 +189,7 @@ public class EtherealChains extends Artifact { //don't pull if there are no solid objects next to the pull location boolean solidFound = false; - for (int i : PathFinder.NEIGHBOURS4){ + for (int i : PathFinder.NEIGHBOURS8){ if (Level.solid[chain.collisionPos + i]){ solidFound = true; break;