summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-09 19:20:00 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-09 19:20:00 +0000
commita248d006c5018fd87d55e328ea6d008bf00e1d01 (patch)
treef207f015224973fb109c8db10f9c9de803a428df
parent4e0a18597c68595b7f76a329820078711fb88965 (diff)
downloadhercules-a248d006c5018fd87d55e328ea6d008bf00e1d01.tar.gz
hercules-a248d006c5018fd87d55e328ea6d008bf00e1d01.tar.bz2
hercules-a248d006c5018fd87d55e328ea6d008bf00e1d01.tar.xz
hercules-a248d006c5018fd87d55e328ea6d008bf00e1d01.zip
- Fixed char server SQL not sending the guild info update to other map servers when a new member is added.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9835 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt3
-rw-r--r--src/char_sql/int_guild.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 2b682ac7e..978037dcb 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -3,6 +3,9 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2007/02/09
+ * Fixed char server SQL not sending the guild info update to other map
+ servers when a new member is added.
2007/02/08
* Modified Spider Web so it can instantly retrap a target, rather than
idling on the ground waiting for a new target.
diff --git a/src/char_sql/int_guild.c b/src/char_sql/int_guild.c
index 4f984cf10..8232608c1 100644
--- a/src/char_sql/int_guild.c
+++ b/src/char_sql/int_guild.c
@@ -1399,7 +1399,7 @@ int mapif_parse_GuildAddMember(int fd,int guild_id,struct guild_member *m)
g->member[i].modified = (GS_MEMBER_NEW | GS_MEMBER_MODIFIED);
mapif_guild_memberadded(fd,guild_id,m->account_id,m->char_id,0);
if (!guild_calcinfo(g)) //Send members if it was not invoked.
- mapif_guild_info(fd,g);
+ mapif_guild_info(-1,g);
g->save_flag |= GS_MEMBER;
if (g->save_flag&GS_REMOVE)