v0.3.0: removed self-kill check from wand of magic missile

This commit is contained in:
Evan Debenham 2015-05-20 10:30:59 -04:00 committed by Evan Debenham
parent 6c9552f215
commit 38c84d6018

View File

@ -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..." );
}
}
}