From e076c02c5ae8cbb35cb5bda368c02a8ebe6a13f6 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 7 May 2021 16:54:36 -0400 Subject: [PATCH] v0.9.3: fixed wand of blast wave declaring hero death incorrectly --- .../shatteredpixeldungeon/items/wands/WandOfBlastWave.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java index 5fa9bc02e..64226b396 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfBlastWave.java @@ -90,10 +90,6 @@ public class WandOfBlastWave extends DamageWand { throwChar(ch, trajectory, strength, false); } - if (ch == Dungeon.hero){ - Dungeon.fail( getClass() ); - GLog.n( Messages.get( this, "ondeath") ); - } } }