summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-05 07:09:53 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-05 07:09:53 +0000
commitbc0ee393e8fbe5b8ca296367866557dce3de62f7 (patch)
tree7492734250aaf1b086877f81d3e4f26f98b987ef /crawl-ref/source
parentcfc5e8cefc516db7e842518eb5afeff1b5aa46b5 (diff)
downloadcrawl-ref-bc0ee393e8fbe5b8ca296367866557dce3de62f7.tar.gz
crawl-ref-bc0ee393e8fbe5b8ca296367866557dce3de62f7.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8236 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/monspeak.cc2
-rw-r--r--crawl-ref/source/monstuff.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/monspeak.cc b/crawl-ref/source/monspeak.cc
index 51496f4b49..3e4c1a60d7 100644
--- a/crawl-ref/source/monspeak.cc
+++ b/crawl-ref/source/monspeak.cc
@@ -364,7 +364,7 @@ bool mons_speaks(const monsters *monster)
{
ASSERT(!invalid_monster_class(monster->type));
- // Monsters always talk on death, even if invisible/silenced/etc
+ // Monsters always talk on death, even if invisible/silenced/etc.
int duration = -1;
const bool force_speak = !monster->alive()
|| !(monster->flags & MF_BANISHED)
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 6be24e7ffe..23b76f2f04 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -996,8 +996,8 @@ void monster_die(monsters *monster, killer_type killer,
if (invalid_monster(monster))
return;
- // If a monster was banished to the abyss and then killed there,
- // then it's death wasn't a banishment.
+ // If a monster was banished to the Abyss and then killed there,
+ // then its death wasn't a banishment.
if (you.level_type == LEVEL_ABYSS)
monster->flags &= ~MF_BANISHED;