diff options
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/actions.cpp | 8 | ||||
-rw-r--r-- | src/actions/actions.h | 1 |
2 files changed, 9 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 |