summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-04 13:42:08 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-04 13:42:08 +0000
commit1a39dc17462960b1ef39bf14964a7d1121ebb622 (patch)
tree00d2b30cc6dc335eb60ca18f1467be2e0196b56d /crawl-ref/source/religion.cc
parent365a783ed6551f7e0273294bbe31fd0e707173fe (diff)
downloadcrawl-ref-1a39dc17462960b1ef39bf14964a7d1121ebb622.tar.gz
crawl-ref-1a39dc17462960b1ef39bf14964a7d1121ebb622.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6770 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index ae77428c3c..732946a16a 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1314,10 +1314,10 @@ static int _tso_blessing_extend_stay(monsters* mon)
mon_enchant abj = mon->get_ench(ENCH_ABJ);
- // [ds] Disabling permanence for balance reasons, but extending duration
- // increase. These numbers are tenths of a player turn. Holy monsters
- // get a much bigger boost than random beasties.
- const int base_increase = mon->holiness() == MH_HOLY? 1100 : 500;
+ // [ds] Disabling permanence for balance reasons, but extending
+ // duration increase. These numbers are tenths of a player turn.
+ // Holy monsters get a much bigger boost than random beasties.
+ const int base_increase = mon->holiness() == MH_HOLY ? 1100 : 500;
const int increase = base_increase + random2(base_increase);
return _increase_ench_duration(mon, abj, increase);
}