summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-20 21:53:49 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-20 21:53:49 -0500
commitb5c1561ec884989e72f8b6a25ef07adb1ff445e4 (patch)
tree3a6cb6673268ee96256c250d23a50ac2d0faad00 /crawl-ref/source/religion.cc
parent641b3a30c9a8c61e5b9626019029a0b953d9815c (diff)
downloadcrawl-ref-b5c1561ec884989e72f8b6a25ef07adb1ff445e4.tar.gz
crawl-ref-b5c1561ec884989e72f8b6a25ef07adb1ff445e4.zip
Add comment fixes.
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 2aba3fca11..7e17b066dd 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2310,8 +2310,9 @@ static void _do_god_gift(bool prayed_for)
if (thing_created == NON_ITEM)
return;
- // Mark the book type as known to avoid duplicate gifts
- // if players don't read their gifts for some reason
+ // Mark the book type as known to avoid duplicate
+ // gifts if players don't read their gifts for some
+ // reason.
mark_had_book(gift);
move_item_to_grid( &thing_created, you.pos() );
@@ -2330,7 +2331,7 @@ static void _do_god_gift(bool prayed_for)
// HACK: you.num_gifts keeps track of Necronomicon
// and weapon blessing for Kiku, so don't increase
- // it. Also, timeouts are meaningles for Kiku. evk
+ // it. Also, timeouts are meaningless for Kiku. evk
if (you.religion != GOD_KIKUBAAQUDGHA)
{
_inc_gift_timeout(40 + random2avg(19, 2));
@@ -2339,7 +2340,7 @@ static void _do_god_gift(bool prayed_for)
take_note(Note(NOTE_GOD_GIFT, you.religion));
}
- // Vehumet gives books less readily
+ // Vehumet gives books less readily.
if (you.religion == GOD_VEHUMET && success)
_inc_gift_timeout(10 + random2(10));
} // End of giving books.