* Fixed map server getting notified of hair, hair color, gender, class and level changes from a char server (TXT only) twice (since r2986).
git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/renewal@14485 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
67820415f5
commit
f5f3949e4b
@ -4,6 +4,7 @@ Date Added
|
|||||||
* mail_deliveryfail no longer attempts to log (since r12910) and give items (since r11855), when there is no item attached to the mail (bugreport:3239). [Ai4rei]
|
* mail_deliveryfail no longer attempts to log (since r12910) and give items (since r11855), when there is no item attached to the mail (bugreport:3239). [Ai4rei]
|
||||||
* Fixed a crash when shutting down char-server (TXT only), after it failed to load storage save data (since r1275). [Ai4rei]
|
* Fixed a crash when shutting down char-server (TXT only), after it failed to load storage save data (since r1275). [Ai4rei]
|
||||||
* Batch files (Windows) now detect whether the server crashed, aborted or shutdown cleanly (Ctrl+C or @mapexit) and print appropriate message, instead of always assuming, that the server crashed (bugreport:3476, since r1818). [Ai4rei]
|
* Batch files (Windows) now detect whether the server crashed, aborted or shutdown cleanly (Ctrl+C or @mapexit) and print appropriate message, instead of always assuming, that the server crashed (bugreport:3476, since r1818). [Ai4rei]
|
||||||
|
* Fixed map server getting notified of hair, hair color, gender, class and level changes from a char server (TXT only) twice (since r2986). [Ai4rei]
|
||||||
2010/11/21
|
2010/11/21
|
||||||
* Added msinttypes (rev. 26, http://msinttypes.googlecode.com/svn/trunk/) portability framework for Visual C++ compilers (related bugreport:4059). [Ai4rei]
|
* Added msinttypes (rev. 26, http://msinttypes.googlecode.com/svn/trunk/) portability framework for Visual C++ compilers (related bugreport:4059). [Ai4rei]
|
||||||
* Added 64-bit variants of the socket and buffer I/O macros. [Ai4rei]
|
* Added 64-bit variants of the socket and buffer I/O macros. [Ai4rei]
|
||||||
|
@ -1237,6 +1237,7 @@ int mapif_parse_GuildMemberInfoChange(int fd, int guild_id, int account_id, int
|
|||||||
switch(type) {
|
switch(type) {
|
||||||
case GMI_POSITION: // –ð<E28093>E
|
case GMI_POSITION: // –ð<E28093>E
|
||||||
g->member[i].position = *((int *)data);
|
g->member[i].position = *((int *)data);
|
||||||
|
mapif_guild_memberinfochanged(guild_id, account_id, char_id, type, data, len);
|
||||||
break;
|
break;
|
||||||
case GMI_EXP: // EXP
|
case GMI_EXP: // EXP
|
||||||
{
|
{
|
||||||
@ -1254,6 +1255,7 @@ int mapif_parse_GuildMemberInfoChange(int fd, int guild_id, int account_id, int
|
|||||||
guild_calcinfo(g);
|
guild_calcinfo(g);
|
||||||
mapif_guild_basicinfochanged(guild_id,GBI_EXP,&g->exp,4);
|
mapif_guild_basicinfochanged(guild_id,GBI_EXP,&g->exp,4);
|
||||||
}
|
}
|
||||||
|
mapif_guild_memberinfochanged(guild_id, account_id, char_id, type, data, len);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GMI_HAIR:
|
case GMI_HAIR:
|
||||||
@ -1291,7 +1293,6 @@ int mapif_parse_GuildMemberInfoChange(int fd, int guild_id, int account_id, int
|
|||||||
ShowError("int_guild: GuildMemberInfoChange: Unknown type %d\n", type);
|
ShowError("int_guild: GuildMemberInfoChange: Unknown type %d\n", type);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
mapif_guild_memberinfochanged(guild_id, account_id, char_id, type, data, len);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user