diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-23 15:19:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-23 15:19:14 +0300 |
commit | e83760a9b74131d7db25949b8b1bd69b8cb4c81d (patch) | |
tree | f48e6bae67959f836e97d2b6a8e39f78bf51eaa6 /src/input | |
parent | e07a6a1cb8cd414f0b0a8de21903cd621582a906 (diff) | |
download | plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.tar.gz plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.tar.bz2 plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.tar.xz plus-e83760a9b74131d7db25949b8b1bd69b8cb4c81d.zip |
Add chat command for rename own pet (hercules only)
New chat command: /setpetname NAME
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 422a141ae..74c3a90f8 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -483,6 +483,7 @@ namespace InputAction MERCENARY_FIRE, TARGET_MERCENARY, TARGET_PET, + PET_SET_NAME, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index edd9620be..9b0a6f363 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4088,7 +4088,16 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME | InputCondition::NOTARGET, "targetpet", - false} + false}, + {"keyPetSetName", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::setPetName, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "setpetname|petsetname", + false}, }; #endif // INPUT_INPUTACTIONMAP_H |