summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
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 9fb78d2fd4..66df37f249 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -1768,11 +1768,11 @@ int player_evasion()
// Calculate the base bonus here, but it may be reduced by heavy
// armour below.
- int dodge_bonus = (you.skills[SK_DODGING] * you.dex + 10)
+ int dodge_bonus = (you.skills[SK_DODGING] * you.dex + 7)
/ (20 - size_factor);
// Limit on bonus from dodging:
- const int max_bonus = (you.skills[SK_DODGING] * (10 + size_factor)) / 9;
+ const int max_bonus = (you.skills[SK_DODGING] * (7 + size_factor)) / 9;
if (dodge_bonus > max_bonus)
dodge_bonus = max_bonus;