From 38c84d60186c46804e01702e585714fe1f028d99 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 20 May 2015 10:30:59 -0400 Subject: [PATCH] v0.3.0: removed self-kill check from wand of magic missile --- .../items/wands/WandOfMagicMissile.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfMagicMissile.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfMagicMissile.java index 4b6147673..03a652969 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfMagicMissile.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfMagicMissile.java @@ -60,11 +60,7 @@ public class WandOfMagicMissile extends Wand { ch.damage(Random.NormalIntRange(2 , 6 + level * 2), this); ch.sprite.burst(0xFFFFFFFF, level / 2 + 2); - - if (ch == curUser && !ch.isAlive()) { - Dungeon.fail( Utils.format( ResultDescriptions.ITEM, name ) ); - GLog.n( "You killed yourself with your own Wand of Magic Missile..." ); - } + } }