v1.4.0: explosions now have an on death message

This commit is contained in:
Evan Debenham
2022-07-31 14:50:50 -04:00
parent 6774e0a6c7
commit 2a45ff5689
2 changed files with 2 additions and 1 deletions

View File

@@ -466,7 +466,7 @@ items.bombs.arcanebomb.desc=This bomb has been imbued with arcane properties. It
items.bombs.bomb.name=bomb
items.bombs.bomb.ac_lightthrow=LIGHT & THROW
items.bombs.bomb.snuff_fuse=You quickly snuff the bomb's fuse.
items.bombs.bomb.ondeath=Killed by an explosion
items.bombs.bomb.ondeath=The explosion kills you...
items.bombs.bomb.rankings_desc=Killed by an explosion
items.bombs.bomb.desc=A fairly hefty black powder bomb. An explosion from this would certainly do damage to anything nearby.
items.bombs.bomb.desc_fuse=It looks like the fuse will take a couple rounds to burn down once it is lit.

View File

@@ -196,6 +196,7 @@ public class Bomb extends Item {
if (this instanceof MagicalBomb){
Badges.validateDeathFromFriendlyMagic();
}
GLog.n(Messages.get(this, "ondeath"));
Dungeon.fail(Bomb.class);
}
}