From 419927ac9f5ea5b71b21b52728bb56925b797937 Mon Sep 17 00:00:00 2001 From: Skotlex Date: Tue, 3 Aug 2010 14:36:00 +0000 Subject: - Merged a few minor bugfixes - Merged in a bunch of the eA renewal support patch. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14368 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/char.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/char/char.c') diff --git a/src/char/char.c b/src/char/char.c index 6f65eec37..5178791b5 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -790,7 +790,7 @@ int mmo_char_fromstr(char *str, struct mmo_charstatus *p, struct global_reg *reg p->inventory[i].refine = tmp_int[5]; p->inventory[i].attribute = tmp_int[6]; - for(j = 0; j < MAX_SLOTS && tmp_str[0] && sscanf(tmp_str[0], ",%d%[0-9,-]",&tmp_int[0], tmp_str[0]) > 0; j++) + for(j = 0; j < MAX_SLOTS && tmp_str[0][0] && sscanf(tmp_str[0], ",%d%[0-9,-]",&tmp_int[0], tmp_str[0]) > 0; j++) p->inventory[i].card[j] = tmp_int[0]; next += len; @@ -814,7 +814,7 @@ int mmo_char_fromstr(char *str, struct mmo_charstatus *p, struct global_reg *reg p->cart[i].refine = tmp_int[5]; p->cart[i].attribute = tmp_int[6]; - for(j = 0; j < MAX_SLOTS && tmp_str && sscanf(tmp_str[0], ",%d%[0-9,-]",&tmp_int[0], tmp_str[0]) > 0; j++) + for(j = 0; j < MAX_SLOTS && tmp_str[0][0] && sscanf(tmp_str[0], ",%d%[0-9,-]",&tmp_int[0], tmp_str[0]) > 0; j++) p->cart[i].card[j] = tmp_int[0]; next += len; @@ -1735,6 +1735,10 @@ int mmo_char_tobuf(uint8* buffer, struct mmo_charstatus* p) #if PACKETVER >= 20061023 WBUFW(buf,106) = ( p->rename > 0 ) ? 0 : 1; offset += 2; +#endif +#if PACKETVER >= 20100721 + mapindex_getmapname_ext(mapindex_id2name(p->last_point.map), (char*)WBUFP(buf,108)); + offset += 16; #endif return 106+offset; } @@ -1747,7 +1751,7 @@ int mmo_char_send006b(int fd, struct char_session_data* sd) int i, j, found_num, offset = 0; #if PACKETVER >= 20100413 offset += 3; -#endif; +#endif found_num = 0; for(i = 0; i < char_num; i++) { -- cgit v1.2.3-60-g2f50