Fixed call homunc bug when the homunc was vapo and the master has change of map

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8414 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
toms 2006-08-21 21:57:56 +00:00
parent cc6ddef2e4
commit a18ae6fb49
2 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/08/21 2006/08/21
* Fixed call homunc bug when the homunc was vapo and the master has change
of map [Toms]
* Fixed SQL-Guild Creation, guild name was escaped 2 times [Toms] * Fixed SQL-Guild Creation, guild name was escaped 2 times [Toms]
* Some cleaning of the splash skills. Updated skill-attack to enable again * Some cleaning of the splash skills. Updated skill-attack to enable again
passing of flag 0xF000 which signals that the skill level sent to the passing of flag 0xF000 which signals that the skill level sent to the

View File

@ -708,6 +708,7 @@ int merc_call_homunculus(struct map_session_data *sd, short x, short y)
{ //Spawn him { //Spawn him
hd->bl.x = x; hd->bl.x = x;
hd->bl.y = y; hd->bl.y = y;
hd->bl.m = sd->bl.m;
map_addblock(&hd->bl); map_addblock(&hd->bl);
clif_spawn(&hd->bl); clif_spawn(&hd->bl);
clif_send_homdata(sd,SP_ACK,0); clif_send_homdata(sd,SP_ACK,0);