summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-13 21:19:26 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-13 21:19:26 +0300
commitca333756a61de5af5d07614dbedc6195c2e78023 (patch)
treed85f67b43b02a5c6e068ffea50de5f37cc426171 /src/input
parentb2043642e62a5fe58c42ee07a25c41b4ef6b67cc (diff)
downloadmv-ca333756a61de5af5d07614dbedc6195c2e78023.tar.gz
mv-ca333756a61de5af5d07614dbedc6195c2e78023.tar.bz2
mv-ca333756a61de5af5d07614dbedc6195c2e78023.tar.xz
mv-ca333756a61de5af5d07614dbedc6195c2e78023.zip
Add chat command for protect item.
New chat command: /protectitem ID Alias: /itemprotect ID
Diffstat (limited to 'src/input')
-rw-r--r--src/input/inputaction.h1
-rw-r--r--src/input/inputactionmap.h9
2 files changed, 10 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h
index c0bc6b615..8e926b368 100644
--- a/src/input/inputaction.h
+++ b/src/input/inputaction.h
@@ -508,6 +508,7 @@ namespace InputAction
INV_TO_STORAGE,
TRADE_ADD,
STORAGE_TO_INV,
+ ITEM_PROTECT,
TOTAL
};
} // namespace InputAction
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index 183bb3b6e..ab2a8ea29 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -4315,6 +4315,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = {
InputCondition::INGAME,
"storagetoinv|storageinv",
true},
+ {"keyProtectItem",
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ Input::GRP_DEFAULT,
+ &Actions::protectItem,
+ InputAction::NO_VALUE, 50,
+ InputCondition::INGAME,
+ "protectitem|itemprotect",
+ true},
};
#endif // INPUT_INPUTACTIONMAP_H