v0.3.0: corrected wand hitsplashes

This commit is contained in:
Evan Debenham
2015-04-29 21:33:49 -04:00
parent 11a13d72dd
commit 99d077a2dd
2 changed files with 4 additions and 4 deletions
@@ -77,9 +77,9 @@ public class WandOfMagicMissile extends Wand {
int level = level();
ch.damage( Random.NormalIntRange( 3+level, 6+level*2 ), this );
ch.sprite.burst( 0xFF99CCFF, level / 2 + 2 );
ch.damage(Random.NormalIntRange(3 + level, 6 + level * 2), this);
ch.sprite.burst(0xFFFFFFFF, level / 2 + 2);
if (ch == curUser && !ch.isAlive()) {
Dungeon.fail( Utils.format( ResultDescriptions.ITEM, name ) );