summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-13 17:44:08 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-13 17:44:08 +0000
commitc6a6b5910ed3d96e8719cac99990099cecbe5515 (patch)
tree1e11f51f5d68bc351580556f90afca552901157d /crawl-ref/source/religion.cc
parent868f85f513649fcc33d58858808d529ffb378ed7 (diff)
downloadcrawl-ref-c6a6b5910ed3d96e8719cac99990099cecbe5515.tar.gz
crawl-ref-c6a6b5910ed3d96e8719cac99990099cecbe5515.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5024 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 8565f31b56..e97353fe0d 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -5190,7 +5190,7 @@ void handle_god_time()
divine_retribution(which_god);
}
- // Update the god's opinion of the player
+ // Update the god's opinion of the player.
if (you.religion != GOD_NO_GOD)
{
switch (you.religion)
@@ -5208,15 +5208,15 @@ void handle_god_time()
const char *newfavour = describe_xom_favour();
if (strcmp(origfavour, newfavour))
{
- // Dampen oscillation across announcement boundaries:
+ // Dampen oscillation across announcement boundaries.
size += delta * 2;
you.piety = 100 + (good ? size : -size);
}
- // ... but he gets bored... (I re-use gift_timeout for
- // this instead of making a separate field because I don't
- // want to learn how to save and restore a new field). In
- // this usage, the "gift" is the gift you give to Xom of
+ // ...but he gets bored... (I re-use gift_timeout for this
+ // instead of making a separate field because I don't want
+ // to learn how to save and restore a new field). In this
+ // usage, the "gift" is the gift you give to Xom of
// something interesting happening.
if (you.gift_timeout == 1)
{