summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/skills.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/skills.cc b/crawl-ref/source/skills.cc
index 66d6adb6c2..d39635531a 100644
--- a/crawl-ref/source/skills.cc
+++ b/crawl-ref/source/skills.cc
@@ -150,13 +150,6 @@ int exercise(int exsk, int deg)
if (you.exp_available <= 0 || you.skills[exsk] >= 27)
break;
- // randomly deny skill excercise if not many points available
- if (random2(you.exp_pool_cutoff()/10) >= you.exp_available)
- {
- deg--;
- continue;
- }
-
if (you.practise_skill[exsk] || one_chance_in(4))
ret += _exercise2( exsk );