diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 15:36:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 15:36:30 +0300 |
commit | ba4e639a333eed40f95f7bf7a361c0bd0186c334 (patch) | |
tree | b35eabbf47e6ca848bc1fd3b05233689e387d0a3 /src/input | |
parent | b3f08b33aff591346efb4a94c4cfccdd7b120e9f (diff) | |
download | plus-ba4e639a333eed40f95f7bf7a361c0bd0186c334.tar.gz plus-ba4e639a333eed40f95f7bf7a361c0bd0186c334.tar.bz2 plus-ba4e639a333eed40f95f7bf7a361c0bd0186c334.tar.xz plus-ba4e639a333eed40f95f7bf7a361c0bd0186c334.zip |
Move chat command /removename 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 cdfe410fa..36f9277b1 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -411,6 +411,7 @@ namespace InputAction ENABLE_HIGHLIGHT, DISABLE_HIGHLIGHT, DONT_REMOVE_NAME, + REMOVE_NAME, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index dad0f0cc1..244400d1b 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3476,6 +3476,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "dontremovename", + false}, + {"keyRemoveName", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::removeName, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "removename", false} }; |