diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/storage.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/storage.c b/src/map/storage.c index 4aefaae96..01e7c7c27 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -200,6 +200,8 @@ int storage_additem(struct map_session_data* sd, struct item* item_data, int amo clif->storageitemadded(sd, it, i, amount); + sd->storage.save = true; // set a save flag. + return 0; } } @@ -220,6 +222,8 @@ int storage_additem(struct map_session_data* sd, struct item* item_data, int amo *it = *item_data; } + it->amount = amount; + sd->storage.aggregate++; clif->storageitemadded(sd, it, i, amount); |