summaryrefslogtreecommitdiff
path: root/src/map/storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/storage.c')
-rw-r--r--src/map/storage.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/map/storage.c b/src/map/storage.c
index a6bf5e026..4b2dff0ed 100644
--- a/src/map/storage.c
+++ b/src/map/storage.c
@@ -118,7 +118,10 @@ int storage_delete(int account_id)
}
/*==========================================
- * カプラ倉庫を開く
+ * Opens a storage. Returns:
+ * 0 - success
+ * 1 - fail
+ * 2 - Storage requested from char-server (will open automatically later)
*------------------------------------------
*/
int storage_storageopen(struct map_session_data *sd)
@@ -141,7 +144,7 @@ int storage_storageopen(struct map_session_data *sd)
if((stor = idb_get(storage_db,sd->status.account_id)) == NULL)
{ //Request storage.
intif_request_storage(sd->status.account_id);
- return 1;
+ return 2;
}
if (stor->storage_status)