diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-11 12:36:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-11 12:36:18 +0300 |
commit | 71d50c2de2cfe8c9d5b1653596eae90761c8a9d6 (patch) | |
tree | 88234658b6397123e6c3176d119d1a45df672ed4 /src/input | |
parent | 660d3b585ab50038e5b2ea3fb9cf4049a7e697d1 (diff) | |
download | plus-71d50c2de2cfe8c9d5b1653596eae90761c8a9d6.tar.gz plus-71d50c2de2cfe8c9d5b1653596eae90761c8a9d6.tar.bz2 plus-71d50c2de2cfe8c9d5b1653596eae90761c8a9d6.tar.xz plus-71d50c2de2cfe8c9d5b1653596eae90761c8a9d6.zip |
Add action and chat command for "catch pet".
New chat command: /catchpet - Try catch selected monster
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 11 | ||||
-rw-r--r-- | src/input/pages/basic.cpp | 6 |
3 files changed, 17 insertions, 1 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 3146e290b..e272cefd4 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -477,6 +477,7 @@ namespace InputAction PET_EMOTE_46, PET_EMOTE_47, PET_EMOTE_48, + CATCH_PET, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index eb95e8fc3..a355c33ba 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4034,7 +4034,16 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::PET_EMOTE, 100, InputCondition::GAME, "", - false} + false}, + {"keyCatchPet", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::catchPet, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "catchpet|catch", + true}, }; #endif // INPUT_INPUTACTIONMAP_H diff --git a/src/input/pages/basic.cpp b/src/input/pages/basic.cpp index 9d158f0be..8975c23a4 100644 --- a/src/input/pages/basic.cpp +++ b/src/input/pages/basic.cpp @@ -129,6 +129,12 @@ SetupActionData setupActionDataBasic[] = }, { // TRANSLATORS: input action name + N_("Catch pet"), + InputAction::CATCH_PET, + "", + }, + { + // TRANSLATORS: input action name N_("Other Keys"), InputAction::NO_VALUE, "", |