summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-24 20:43:11 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-24 20:43:11 -0500
commit224b548b0ec1489f5cccbc421d62783d11149ebe (patch)
tree48d584fad8c4204876a3f0c364a3f8cadee4519d /crawl-ref/source/spells4.cc
parentd9414a0dafccbe489adeb4e2c3a1a37af907eae4 (diff)
downloadcrawl-ref-224b548b0ec1489f5cccbc421d62783d11149ebe.tar.gz
crawl-ref-224b548b0ec1489f5cccbc421d62783d11149ebe.zip
Add minor cosmetic fixes.
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index a82879c2e7..c6fb109290 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -321,8 +321,8 @@ void cast_shatter(int pow)
apply_area_within_radius(_shatter_items, you.pos(), pow, rad, 0);
apply_area_within_radius(_shatter_monsters, you.pos(), pow, rad, 0);
- int dest = apply_area_within_radius( _shatter_walls, you.pos(),
- pow, rad, 0 );
+ int dest = apply_area_within_radius(_shatter_walls, you.pos(),
+ pow, rad, 0);
if (dest && !silence)
mpr("Ka-crash!", MSGCH_SOUND);
@@ -576,19 +576,19 @@ static int _ignite_poison_monsters(coord_def where, int pow, int, actor *)
int damage = dam_dice.roll();
if (damage > 0)
{
- damage = mons_adjust_flavoured( mon, beam, damage );
+ damage = mons_adjust_flavoured(mon, beam, damage);
simple_monster_message(mon, " seems to burn from within!");
#if DEBUG_DIAGNOSTICS
mprf(MSGCH_DIAGNOSTICS, "Dice: %dd%d; Damage: %d",
- dam_dice.num, dam_dice.size, damage );
+ dam_dice.num, dam_dice.size, damage);
#endif
if (!_player_hurt_monster(*mon, damage))
{
// Monster survived, remove any poison.
mon->del_ench(ENCH_POISON);
- behaviour_event( mon, ME_ALERT );
+ behaviour_event(mon, ME_ALERT);
}
return (1);