From 4e7cf8fe475d74aca241577e827e4379e30c594d Mon Sep 17 00:00:00 2001 From: Cahyadi Ramadhan Togihon Date: Sun, 6 Oct 2013 13:00:03 +0700 Subject: [PATCH] * Fixed Storage AddItem Bug (bugreport:8126, Hercules merge:24556fb) --- src/map/storage.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/map/storage.c b/src/map/storage.c index ed50628be7..e03cca70b2 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -234,6 +234,8 @@ int storage_storageadd(struct map_session_data* sd, int index, int amount) if( storage_additem(sd,&sd->status.inventory[index],amount) == 0 ) pc_delitem(sd,index,amount,0,4,LOG_TYPE_STORAGE); + else + clif_dropitem(sd,index,0); return 1; }