diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 15:45:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 15:45:07 +0300 |
commit | abdc57a4acfa490ee34985b56b2d985266ccc7e4 (patch) | |
tree | 8016393684c2e03dc0722dea98c44ff3e31d0ea5 /src/input | |
parent | 0b9105af0ae2b85a0a3ea5364d8a854d107ce34a (diff) | |
download | mv-abdc57a4acfa490ee34985b56b2d985266ccc7e4.tar.gz mv-abdc57a4acfa490ee34985b56b2d985266ccc7e4.tar.bz2 mv-abdc57a4acfa490ee34985b56b2d985266ccc7e4.tar.xz mv-abdc57a4acfa490ee34985b56b2d985266ccc7e4.zip |
Move chat command /enableaway 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 cfeef44c1..2cd802ce0 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -413,6 +413,7 @@ namespace InputAction DONT_REMOVE_NAME, REMOVE_NAME, DISABLE_AWAY, + ENABLE_AWAY, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index d2d09c770..f3ce27a76 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3494,6 +3494,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "disableaway", + false}, + {"keyEnableAway", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::enableAway, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "enableaway", false} }; |