summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mon-data.h4
-rw-r--r--crawl-ref/source/monplace.cc8
2 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/mon-data.h b/crawl-ref/source/mon-data.h
index b79d170552..4dd9ac545c 100644
--- a/crawl-ref/source/mon-data.h
+++ b/crawl-ref/source/mon-data.h
@@ -2993,9 +2993,9 @@ static monsterentry mondata[] = {
HT_WATER, 10, DEFAULT_ENERGY, MONUSE_NOTHING, MONEAT_NOTHING, SIZE_LITTLE
},
+// A shark goes into a battle frenzy when it smells blood.
{
MONS_SHARK, ';', WHITE, "shark",
- // Goes into a battle frenzy when it smells blood.
M_COLD_BLOOD | M_BLOOD_SCENT,
MR_NO_FLAGS,
0, 12, MONS_SHARK, MONS_SHARK, MH_NATURAL, -3,
@@ -3005,7 +3005,7 @@ static monsterentry mondata[] = {
HT_WATER, 10, DEFAULT_ENERGY, MONUSE_NOTHING, MONEAT_NOTHING, SIZE_LARGE
},
- // A kraken and its tentacles get a random colour at creation.
+// A kraken and its tentacles get a random colour at creation.
{
MONS_KRAKEN, 'X', DARKGREY, "kraken",
M_COLD_BLOOD | M_SPELLCASTER,
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index a3f4fdb4ff..d8f53ef2c7 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -1106,8 +1106,8 @@ static int _place_monster_aux(const mgen_data &mg,
menv[id].god = GOD_XOM;
}
- // If the caller requested a specific colour for this monster,
- // apply it now.
+ // If the caller requested a specific colour for this monster, apply
+ // it now.
if (mg.colour != BLACK)
menv[id].colour = mg.colour;
else if (mg.cls == MONS_KRAKEN)
@@ -1117,8 +1117,8 @@ static int _place_monster_aux(const mgen_data &mg,
}
// The return of Boris is now handled in monster_die()...
- // not setting this for Boris here allows for multiple Borises
- // in the dungeon at the same time. -- bwr
+ // not setting this for Boris here allows for multiple Borises in
+ // the dungeon at the same time. -- bwr
if (mons_is_unique(mg.cls))
you.unique_creatures[mg.cls] = true;