summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-08-13 01:27:39 -0400
committerJesse Luehrs <doy@tozt.net>2014-08-13 01:27:39 -0400
commit3487c1a9300529a40ee5a952371fb8fc376e93c5 (patch)
tree39377ca1f258be50a974e0575c3b67e2ebe7bde3
parent423313931866de0dd6d3111e7989fc1d5ef1cb79 (diff)
downloadcrawl-ref-3487c1a9300529a40ee5a952371fb8fc376e93c5.tar.gz
crawl-ref-3487c1a9300529a40ee5a952371fb8fc376e93c5.zip
remove useless 1% failure chance for gr and dr flight
-rw-r--r--crawl-ref/source/ability.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ability.cc b/crawl-ref/source/ability.cc
index 4a52059827..467993eacf 100644
--- a/crawl-ref/source/ability.cc
+++ b/crawl-ref/source/ability.cc
@@ -1029,7 +1029,7 @@ talent get_talent(ability_type ability, bool check_confused)
break;
case ABIL_FLY:
- failure = 45 - (3 * you.experience_level);
+ failure = 42 - (3 * you.experience_level);
break;
case ABIL_TRAN_BAT: