summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-30 21:32:06 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-30 21:32:06 -0500
commit689138d9dd33384dd7710fbe75a45d319dce3d04 (patch)
treedc145c4e20a6269cb415208e4e4e49cfdac06138 /crawl-ref
parented7c46f298b38307fa5400b743a06f5204a11c39 (diff)
downloadcrawl-ref-689138d9dd33384dd7710fbe75a45d319dce3d04.tar.gz
crawl-ref-689138d9dd33384dd7710fbe75a45d319dce3d04.zip
Add minor cosmetic fixes.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mstuff2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index f92757b2ab..2babc21665 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -156,7 +156,7 @@ void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast,
#endif
if (spell_cast == SPELL_CANTRIP)
- do_noise = false; // Spell itself does the messaging
+ do_noise = false; // Spell itself does the messaging.
if (_los_free_spell(spell_cast) && !spell_is_direct_explosion(spell_cast))
{
@@ -375,7 +375,7 @@ void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast,
if (_mons_abjured(monster, monsterNearby))
return;
- sumcount2 = 1 + random2(3) + random2( monster->hit_dice / 5 + 1);
+ sumcount2 = 1 + random2(3) + random2(monster->hit_dice / 5 + 1);
duration = std::min(2 + monster->hit_dice / 5, 6);
for (sumcount = 0; sumcount < sumcount2; ++sumcount)