summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-11 00:28:42 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-11 00:28:42 +0000
commit589963865e1c068acfac4616ee626afa18a0cb09 (patch)
tree7ee123857fb5a6a4964ad388cd2a66c2e95ab165
parentf7df4753b2619a66553721f10d2984a006e8f8a6 (diff)
downloadcrawl-ref-589963865e1c068acfac4616ee626afa18a0cb09.tar.gz
crawl-ref-589963865e1c068acfac4616ee626afa18a0cb09.zip
Backport trunk r9954 to 0.5.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.5@9955 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/player.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 1014f0b102..015c96b96a 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -1065,8 +1065,7 @@ int player_regen()
// Before applying other effects, make sure that there's something
// to heal.
- if (rr < 1)
- rr = 1;
+ rr = std::max(1, rr);
// Healing depending on satiation.
// The better-fed you are, the faster you heal.
@@ -1094,9 +1093,9 @@ int player_regen()
rr /= 3;
}
- // Trog's Hand. This overrides all healing reduction above.
+ // Trog's Hand. This overrides everything above.
if (you.attribute[ATTR_DIVINE_REGENERATION])
- rr = std::max(100, rr);
+ rr = 100;
return (rr);
}