summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-13 21:52:25 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-13 21:52:25 +0300
commitd601630f26cd1043f5f2467757093f54c6269158 (patch)
tree7f0a06605e252023ac731d90784c95068e7629a8
parentd88da4d367b40261889afd41779cd029587bacfa (diff)
downloadplus-d601630f26cd1043f5f2467757093f54c6269158.tar.gz
plus-d601630f26cd1043f5f2467757093f54c6269158.tar.bz2
plus-d601630f26cd1043f5f2467757093f54c6269158.tar.xz
plus-d601630f26cd1043f5f2467757093f54c6269158.zip
Add chat command for unprotect item.
New chat command: /unprotectitem ID Alias: /itemunprotect ID
-rw-r--r--src/actions/actions.cpp8
-rw-r--r--src/actions/actions.h1
-rw-r--r--src/input/inputaction.h1
-rw-r--r--src/input/inputactionmap.h9
4 files changed, 19 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index e4b2d9db5..e689db941 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -1501,4 +1501,12 @@ impHandler(protectItem)
return true;
}
+impHandler(unprotectItem)
+{
+ const int id = atoi(event.args.c_str());
+ if (id > 0)
+ PlayerInfo::unprotectItem(id);
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/actions.h b/src/actions/actions.h
index 45dc96f11..cbd7489f3 100644
--- a/src/actions/actions.h
+++ b/src/actions/actions.h
@@ -102,6 +102,7 @@ namespace Actions
decHandler(tradeAdd);
decHandler(storageToInv);
decHandler(protectItem);
+ decHandler(unprotectItem);
} // namespace Actions
#undef decHandler
diff --git a/src/input/inputaction.h b/src/input/inputaction.h
index 8e926b368..efd606db9 100644
--- a/src/input/inputaction.h
+++ b/src/input/inputaction.h
@@ -509,6 +509,7 @@ namespace InputAction
TRADE_ADD,
STORAGE_TO_INV,
ITEM_PROTECT,
+ ITEM_UNPROTECT,
TOTAL
};
} // namespace InputAction
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index ab2a8ea29..146ecba1c 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -4324,6 +4324,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = {
InputCondition::INGAME,
"protectitem|itemprotect",
true},
+ {"keyUnProtectItem",
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ Input::GRP_DEFAULT,
+ &Actions::unprotectItem,
+ InputAction::NO_VALUE, 50,
+ InputCondition::INGAME,
+ "unprotectitem|itemunprotect",
+ true},
};
#endif // INPUT_INPUTACTIONMAP_H