summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-02-24 15:07:10 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-02-24 15:07:10 +0000
commita37d65daf3c8eb782523ab198cba2ee8892e0d0f (patch)
tree8aa3ca384cd7bab84ee3d23b928dab880a074344 /crawl-ref/source/fight.cc
parentc5f83d2896c317b5dc34e010f4e3fcea3dd195b5 (diff)
downloadcrawl-ref-a37d65daf3c8eb782523ab198cba2ee8892e0d0f.tar.gz
crawl-ref-a37d65daf3c8eb782523ab198cba2ee8892e0d0f.zip
Preliminary changelog update for 0.2.
Return gourmand charge ramp-up to 400 turns. Fixed dodging/armour exercise checks. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@961 c06c8d41-db1a-0410-9941-cceddc491573
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))
{