summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-04 02:05:21 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-04 02:05:21 +0000
commit2b7c327174420dbfbc8d12d226c63b5736a34605 (patch)
treecd03e66226e407e6fbc3a1bc3d5c112e320da3d4 /crawl-ref/source
parent28867342aa77db5d8e98c12d200dcdb2039fc766 (diff)
downloadcrawl-ref-2b7c327174420dbfbc8d12d226c63b5736a34605.tar.gz
crawl-ref-2b7c327174420dbfbc8d12d226c63b5736a34605.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8191 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/ghost.cc2
-rw-r--r--crawl-ref/source/mstuff2.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index 4e41fe54f2..d952d3f7cb 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -254,7 +254,7 @@ void ghost_demon::init_random_demon()
if (one_chance_in(25))
spells[0] = SPELL_METAL_SPLINTERS;
if (one_chance_in(25))
- spells[0] = SPELL_ENERGY_BOLT; // eye of devas
+ spells[0] = SPELL_ENERGY_BOLT; // eye of daevas
if (one_chance_in(25))
spells[1] = SPELL_STEAM_BALL;
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 387de794cc..cc8b433161 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -114,11 +114,11 @@ static void _do_high_level_summon(monsters *monster, bool monsterNearby,
static bool _los_free_spell(spell_type spell_cast)
{
- return spell_cast == SPELL_HELLFIRE_BURST
+ return (spell_cast == SPELL_HELLFIRE_BURST
|| spell_cast == SPELL_BRAIN_FEED
|| spell_cast == SPELL_SMITING
|| spell_cast == SPELL_FIRE_STORM
- || spell_cast == SPELL_AIRSTRIKE;
+ || spell_cast == SPELL_AIRSTRIKE);
}
void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast,