summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/macro.cc')
-rw-r--r--crawl-ref/source/macro.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/macro.cc b/crawl-ref/source/macro.cc
index 44f4c8b7a3..d6b998cc83 100644
--- a/crawl-ref/source/macro.cc
+++ b/crawl-ref/source/macro.cc
@@ -1133,6 +1133,11 @@ KeymapContext context_for_command(command_type cmd)
if (cmd >= CMD_MIN_TARGET && cmd <= CMD_MAX_TARGET)
return KMC_TARGETING;
+#ifdef USE_TILE
+ if (cmd >= CMD_MIN_DOLL && cmd <= CMD_MAX_DOLL)
+ return KMC_DOLL;
+#endif
+
return KMC_NONE;
}