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 ) );