summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-06 11:16:25 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-06 11:16:25 +0000
commitb65a80651c57c97676d17e5fe9a1060ce9e8eef4 (patch)
tree74d915a69dcffdf242043f06cda860e869d8a6d3 /crawl-ref/source/spells4.cc
parent1116bae0494365140bb5c3873b0420090a9e7a51 (diff)
downloadcrawl-ref-b65a80651c57c97676d17e5fe9a1060ce9e8eef4.tar.gz
crawl-ref-b65a80651c57c97676d17e5fe9a1060ce9e8eef4.zip
Fix 2038962: casting divine shield wasn't refreshing AC displayed.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6782 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index 248229f269..2c94c3f542 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -2442,7 +2442,7 @@ void cast_divine_shield()
// shield bonus up to 8
you.attribute[ATTR_DIVINE_SHIELD] = 3 + you.skills[SK_SHIELDS]/5;
- return;
+ you.redraw_armour_class = true;
}
static int _quadrant_blink(coord_def where, int pow, int garbage)