summaryrefslogtreecommitdiff
path: root/src/map/storage.cpp
diff options
context:
space:
mode:
authorHoraK-FDF <horak-fdf@web.de>2023-04-03 01:58:15 +0000
committerLed Mitz <smoothshifter@tuta.io>2023-04-03 01:58:15 +0000
commit7980f4d21956314e284448f7dcedd58f9c23b355 (patch)
treebc70b6afa07bec9943d9ec99176637f5a5c1b14a /src/map/storage.cpp
parentc65f380f93e845c8abab8b05d80b91c271d01dbe (diff)
downloadtmwa-7980f4d21956314e284448f7dcedd58f9c23b355.tar.gz
tmwa-7980f4d21956314e284448f7dcedd58f9c23b355.tar.bz2
tmwa-7980f4d21956314e284448f7dcedd58f9c23b355.tar.xz
tmwa-7980f4d21956314e284448f7dcedd58f9c23b355.zip
Item mode
Diffstat (limited to 'src/map/storage.cpp')
-rw-r--r--src/map/storage.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/storage.cpp b/src/map/storage.cpp
index 1327146..54398f3 100644
--- a/src/map/storage.cpp
+++ b/src/map/storage.cpp
@@ -186,6 +186,12 @@ int storage_storageadd(dumb_ptr<map_session_data> sd, IOff0 index, int amount)
if (amount < 1 || amount > sd->status.inventory[index].amount)
return 0;
+ if (bool(itemdb_search(sd->status.inventory[index].nameid)->mode & ItemMode::NO_STORAGE))
+ {
+ clif_displaymessage(sd->sess, "This item can't be stored."_s);
+ return 0;
+ }
+
// log_tostorage(sd, index, 0);
if (storage_additem(sd, stor, &sd->status.inventory[index], amount) == 0)
{