diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-10 02:16:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-15 20:36:25 +0300 |
commit | 38857e6e0b70aba7f8d0438fe7ebb41dc96b4cda (patch) | |
tree | 7a023ad794e0277f82a9252c87e489d32674b7d5 | |
parent | d82c06ba163ee9529358e4de83370d0b2fa77769 (diff) | |
download | hercules-38857e6e0b70aba7f8d0438fe7ebb41dc96b4cda.tar.gz hercules-38857e6e0b70aba7f8d0438fe7ebb41dc96b4cda.tar.bz2 hercules-38857e6e0b70aba7f8d0438fe7ebb41dc96b4cda.tar.xz hercules-38857e6e0b70aba7f8d0438fe7ebb41dc96b4cda.zip |
Add missing status for clif_buyingstore_open_failed.
-rw-r--r-- | src/map/clif.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 6430c933b..9be2def2e 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -17633,7 +17633,8 @@ static void clif_parse_ReqOpenBuyingStore(int fd, struct map_session_data *sd) /// result: /// 1 = "Failed to open buying store." (0x6cd, MSI_BUYINGSTORE_OPEN_FAILED) /// 2 = "Total amount of then possessed items exceeds the weight limit by <weight/10-maxweight*90%>. Please re-enter." (0x6ce, MSI_BUYINGSTORE_OVERWEIGHT) -/// 8 = "No sale (purchase) information available." (0x705) +/// 9 = "No sale (purchase) information available." (0x705) +/// 10 = "Cant open store at this location." (0xC9D) /// ? = nothing static void clif_buyingstore_open_failed(struct map_session_data *sd, unsigned short result, unsigned int weight) { |