diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-14 23:21:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-14 23:21:39 +0300 |
commit | 02f688326716e1f9a193f6f139021242241ad014 (patch) | |
tree | 6d2614374e1a70b2a1e077ff1e29bb2e98e72d94 /src/input | |
parent | 949ff15ab6e7b841b996f8cb1a3bebb957cd4a85 (diff) | |
download | plus-02f688326716e1f9a193f6f139021242241ad014.tar.gz plus-02f688326716e1f9a193f6f139021242241ad014.tar.bz2 plus-02f688326716e1f9a193f6f139021242241ad014.tar.xz plus-02f688326716e1f9a193f6f139021242241ad014.zip |
Add chat command for warp to location at same map.
New chat command: /warp X Y
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 e4f96d06a..4de3c7cb4 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -514,6 +514,7 @@ namespace InputAction ADD_TEXT, KICK, LEAVE_PARTY, + WARP, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index e93d6029c..ac54eaedb 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4369,6 +4369,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "leaveparty|partyleave", true}, + {"keyWarp", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::warp, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "warp", + true}, }; #endif // INPUT_INPUTACTIONMAP_H |