summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-10 00:00:39 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-10 00:00:39 +0000
commit38ccc5f47d34e511bfeddf3a989ca0923b8af4c4 (patch)
treed8c8d6be4d2e947ea98f799f8e35b503f483d84f /crawl-ref/source/direct.cc
parent7e97ac39a73fae6bf2c7a8f1247b2a698020dcb3 (diff)
downloadcrawl-ref-38ccc5f47d34e511bfeddf3a989ca0923b8af4c4.tar.gz
crawl-ref-38ccc5f47d34e511bfeddf3a989ca0923b8af4c4.zip
Modify the command key help.
Apparently something about my attempt to juggle with several versions of command.cc went wrong since patch refuses to swallow my diff, so I'm simply replacing command.cc with the improved version that I know is correct since there haven't been any other changes to this file since my last commit. I also removed the 't' shortcut for targetting, as it was only really useful in the form of "tt" when throwing something. And I tried to find out what's up with the @imp_taunt@ stuff but without success, sometimes it works, and sometimes it doesn't. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3564 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index 902788368e..d46ad84239 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -2266,7 +2266,7 @@ command_type targeting_behaviour::get_command(int key)
case CONTROL('F'): return CMD_TARGET_CYCLE_TARGET_MODE;
case 'p': return CMD_TARGET_PREV_TARGET;
- case 'f': case 't': return CMD_TARGET_MAYBE_PREV_TARGET;
+ case 'f': return CMD_TARGET_MAYBE_PREV_TARGET;
case '-': return CMD_TARGET_CYCLE_BACK;
case '+': case '=': return CMD_TARGET_CYCLE_FORWARD;