From 07c473380889afaaca37f561b8d02bb4298419d9 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 10 Sep 2015 16:36:13 -0400 Subject: [PATCH] v0.3.1d: fixed wand of disintegration dealing bonus damage over non-solid terrain --- .../shatteredpixeldungeon/items/wands/WandOfDisintegration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java index 1c9ff9835..cb0fdbfe2 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfDisintegration.java @@ -81,7 +81,7 @@ public class WandOfDisintegration extends Wand { } - if (!Level.passable[c]) + if (Level.solid[c]) terrainPassed++; CellEmitter.center( c ).burst( PurpleParticle.BURST, Random.IntRange( 1, 2 ) );