summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 19:55:35 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 19:55:35 +0000
commit599b58264de57f9ecab271c1712e171c234447eb (patch)
tree7fb22767cb2ec604b53ce5a28a3e68aea02be6b1 /crawl-ref/source/player.cc
parent4bd4e54c8f73f474104e26b78bede21625f1d1ef (diff)
downloadcrawl-ref-599b58264de57f9ecab271c1712e171c234447eb.tar.gz
crawl-ref-599b58264de57f9ecab271c1712e171c234447eb.zip
Implement new religious titles (FR 1872205).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5709 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 07cdb20059..904c252929 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -1008,7 +1008,7 @@ int player_hunger_rate(void)
if (you.attribute[ATTR_TRANSFORMATION] == TRAN_AIR)
return 0;
- if ( you.species == SP_TROLL )
+ if (you.species == SP_TROLL)
hunger += 3; // in addition to the +3 for fast metabolism
if (you.duration[DUR_REGENERATION] > 0)
@@ -2326,7 +2326,7 @@ int player_evasion()
break;
case SP_KENKU:
- // Flying kenku get an evasion bonus.
+ // Flying Kenku get an evasion bonus.
if (you.flight_mode() == FL_FLY)
{
const int ev_bonus = std::min(9, std::max(1, ev / 5));