summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mon-util.h2
-rw-r--r--crawl-ref/source/monstuff.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-util.h b/crawl-ref/source/mon-util.h
index 3902c9c6bf..ff4bba2228 100644
--- a/crawl-ref/source/mon-util.h
+++ b/crawl-ref/source/mon-util.h
@@ -53,7 +53,7 @@ enum mon_attack_type
AT_GORE,
AT_SHOOT, // Attack representing missile damage for M_ARCHER.
- AT_RANDOM // Anything but AT_SHOOT
+ AT_RANDOM // Anything but AT_SHOOT.
};
enum mon_attack_flavour
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 66e1abeeb6..9fe39c0a6a 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -8089,7 +8089,7 @@ static bool _monster_eat_single_corpse(monsters *monster, item_def& item,
{
monster->hit_points += 1 + random2(mons_weight(item.plus)) / 100;
- // Limited growth factor here -- should 77 really be the cap? {dlb}:
+ // Limited growth factor here - should 77 really be the cap? {dlb}:
monster->hit_points = std::min(100, monster->hit_points);
monster->max_hit_points = std::max(monster->hit_points,
monster->max_hit_points);