summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cmd-keys.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-12-17 12:44:24 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-12-17 13:55:30 +0100
commit4e4b1a4ba1a1d4a0b32be6f46a431413526f63f5 (patch)
tree332c8524225924a303bccd893d4849183be7259a /crawl-ref/source/cmd-keys.h
parentbcae4a5cc4ade008e80f65f90db1394d273211e8 (diff)
downloadcrawl-ref-4e4b1a4ba1a1d4a0b32be6f46a431413526f63f5.tar.gz
crawl-ref-4e4b1a4ba1a1d4a0b32be6f46a431413526f63f5.zip
For single items of quantity > 1 'g' now prompts for an amount.
This behaviour is already possible in Tiles (via mouseclick), so it should also work in the console version. If you'd like to switch 'g' and ',' use the bindkey option: bindkey = [g] CMD_PICKUP bindkey = [,] CMD_PICKUP_QUANTITY For multi-item stacks, the two commands are interchangeable and work as before.
Diffstat (limited to 'crawl-ref/source/cmd-keys.h')
-rw-r--r--crawl-ref/source/cmd-keys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cmd-keys.h b/crawl-ref/source/cmd-keys.h
index 0e7138aef8..ebf14e42f8 100644
--- a/crawl-ref/source/cmd-keys.h
+++ b/crawl-ref/source/cmd-keys.h
@@ -41,7 +41,7 @@
{'d', CMD_DROP},
{'e', CMD_EAT},
{'f', CMD_FIRE},
-{'g', CMD_PICKUP},
+{'g', CMD_PICKUP_QUANTITY},
{'i', CMD_DISPLAY_INVENTORY},
{'m', CMD_DISPLAY_SKILLS},
{'o', CMD_EXPLORE},