summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-07 00:35:55 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-07 00:35:55 +0000
commit33dc7cedd5a65d3bd1ce8eff9006e4517a3390dd (patch)
tree3c06f39f3bd808f5dab3f9d4bab07d8574d685cf /crawl-ref/source/acr.cc
parent9242e32cfc75a0655f5b95c636425a19045a90e5 (diff)
downloadcrawl-ref-33dc7cedd5a65d3bd1ce8eff9006e4517a3390dd.tar.gz
crawl-ref-33dc7cedd5a65d3bd1ce8eff9006e4517a3390dd.zip
Add a few comments.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6438 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index b6c372cd33..80e55b8fc9 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -1458,9 +1458,10 @@ static void _input()
// XXX: Is there some smart way to avoid autoswitching back if we're
// just about to continue butchering?
- if (Options.swap_when_safe && !you.turn_is_over && player_feels_safe
+ if (!you.turn_is_over && player_feels_safe
&& you.attribute[ATTR_WEAPON_SWAP_INTERRUPTED])
{
+ // Decrease value by 1. (0 means attribute is false, 1 = a, 2 = b, ...)
int weap = you.attribute[ATTR_WEAPON_SWAP_INTERRUPTED] - 1;
if (weap == ENDOFPACK)
weap = -1;