diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 16:41:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 16:41:00 +0300 |
commit | 56178bf525b07582389493158ac90e2ab7721571 (patch) | |
tree | 42a1696e108453eaad3e80ca68151c7f8b10e8fd /src/input | |
parent | 7891954d9767df4fc4ecf1c44830ca9c18a34e10 (diff) | |
download | plus-56178bf525b07582389493158ac90e2ab7721571.tar.gz plus-56178bf525b07582389493158ac90e2ab7721571.tar.bz2 plus-56178bf525b07582389493158ac90e2ab7721571.tar.xz plus-56178bf525b07582389493158ac90e2ab7721571.zip |
Move chat command /hack 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 aa4fd8c6e..eb1e5e491 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -422,6 +422,7 @@ namespace InputAction UPLOAD_SERVER_CONFIG, UPLOAD_LOG, GM, + HACK, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 27d47a707..b9455ff2b 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3575,6 +3575,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "gm", + true}, + {"keyHack", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::hack, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "hack", true} }; |