summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/exercise.cc
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2011-07-14 00:05:56 +0200
committerRaphael Langella <raphael.langella@gmail.com>2011-07-14 01:11:14 +0200
commit863946788b058199091f9e297536387577dcf4c3 (patch)
tree3962418ae96e8e69e94f543132eaa3f03f99de1f /crawl-ref/source/exercise.cc
parent8f5f7274d365e9ae7269d7055652e8d630890fdc (diff)
downloadcrawl-ref-863946788b058199091f9e297536387577dcf4c3.tar.gz
crawl-ref-863946788b058199091f9e297536387577dcf4c3.zip
Slightly increase the rate of stealth passive training.
Diffstat (limited to 'crawl-ref/source/exercise.cc')
-rw-r--r--crawl-ref/source/exercise.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/exercise.cc b/crawl-ref/source/exercise.cc
index 2a76851034..aed934e641 100644
--- a/crawl-ref/source/exercise.cc
+++ b/crawl-ref/source/exercise.cc
@@ -314,7 +314,7 @@ static void _exercise_passive()
if (!x_chance_in_y(armour_mass, 1000)
// Diminishing returns for stealth training by waiting.
&& you.skills[SK_STEALTH] <= 2 + random2(3)
- && one_chance_in(18))
+ && one_chance_in(15))
{
exercise(SK_STEALTH, 1);
}