diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-25 22:49:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-25 22:49:39 +0300 |
commit | 53fce496581e70f0d99bf91152cc6d7e802e0974 (patch) | |
tree | da324a2b4767916437a8bffcf65b170ba38008ad /src/input | |
parent | 3a091245572872f5cda79eab92eb392f92c02b39 (diff) | |
download | plus-53fce496581e70f0d99bf91152cc6d7e802e0974.tar.gz plus-53fce496581e70f0d99bf91152cc6d7e802e0974.tar.bz2 plus-53fce496581e70f0d99bf91152cc6d7e802e0974.tar.xz plus-53fce496581e70f0d99bf91152cc6d7e802e0974.zip |
Move chat command /target into actions.
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index aeb2164e6..7c552b908 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -368,6 +368,7 @@ namespace InputAction PRESENT, PRINT_ALL, MOVE, + TARGET, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 05bb49616..6e0dbd668 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3082,6 +3082,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "move", true}, + {"keySetTarget", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::setTarget, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "target", + true} }; #endif // INPUT_INPUTACTIONMAP_H |