diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-12 23:08:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-12 23:08:49 +0300 |
commit | 23a89c57cbd36922fbcb92affa9546955591e9db (patch) | |
tree | 95fca90f3de9ea039ae179445bb93b661a732420 /src/input | |
parent | b6fa84983bfe0a9fcfd915f6f170c7bfdde1510b (diff) | |
download | plus-23a89c57cbd36922fbcb92affa9546955591e9db.tar.gz plus-23a89c57cbd36922fbcb92affa9546955591e9db.tar.bz2 plus-23a89c57cbd36922fbcb92affa9546955591e9db.tar.xz plus-23a89c57cbd36922fbcb92affa9546955591e9db.zip |
Add chat command for drop item by id and amount dialog.
New chat command: /dropitem ID
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 fb5db9913..e46935ea2 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -500,6 +500,7 @@ namespace InputAction WHISPER_TEXT, NAVIGATE_TO, CAMERA_MOVE, + DROP_ITEM, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 4b9d61047..8515dad5b 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4243,6 +4243,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "movecamera|cameramove", true}, + {"keyDropItem", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::dropItemId, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "dropitem", + true}, }; #endif // INPUT_INPUTACTIONMAP_H |