summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 308de48246..dd64129f49 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2516,7 +2516,8 @@ void melee_attack::mons_announce_dud_hit(const mon_attack_def &attk)
void melee_attack::check_defender_train_dodging()
{
- if (defender->wearing_light_armour(false)
+ // It's possible to train both dodging and armour under the new scheme.
+ if (defender->wearing_light_armour(true)
&& attacker_visible
&& one_chance_in(3))
{