diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-11 15:48:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-11 15:48:13 +0300 |
commit | 1db8072c112d0bc5b3cbf3b3151dfa8be9419189 (patch) | |
tree | 6fa6980acc0db8f1ee61a0b059bec1215fdc4731 /src/input | |
parent | 8de44a41862b3a0ff714e68169b6443a2a06b3aa (diff) | |
download | plus-1db8072c112d0bc5b3cbf3b3151dfa8be9419189.tar.gz plus-1db8072c112d0bc5b3cbf3b3151dfa8be9419189.tar.bz2 plus-1db8072c112d0bc5b3cbf3b3151dfa8be9419189.tar.xz plus-1db8072c112d0bc5b3cbf3b3151dfa8be9419189.zip |
Add chat command for select debug tab.
New chat command: /debugtab
Alias: /debugchattab
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 9a93863e7..80190ff56 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -527,6 +527,7 @@ namespace InputAction PET_AI_START, PET_AI_STOP, CHAT_GENERAL_TAB, + CHAT_DEBUG_TAB, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index bb0a27e61..691870011 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3929,6 +3929,11 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "generaltab|generalchattab|general", false}, + {"keyDebugTab", + defaultAction(&Actions::chatDebugTab), + InputCondition::INGAME, + "debugtab|debugchattab", + false}, }; #undef defaultAction |