diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-02 16:29:37 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-02 16:29:37 +0000 |
commit | 65e0e75aedb7026b4f6a8c3293b3659968f7856f (patch) | |
tree | 50b8a667174ba09dd676ca7c23a37e4e32eb0bb6 /src/map/mercenary.c | |
parent | c81a19aebbf31ac357112b8bd056b259930250e2 (diff) | |
download | hercules-65e0e75aedb7026b4f6a8c3293b3659968f7856f.tar.gz hercules-65e0e75aedb7026b4f6a8c3293b3659968f7856f.tar.bz2 hercules-65e0e75aedb7026b4f6a8c3293b3659968f7856f.tar.xz hercules-65e0e75aedb7026b4f6a8c3293b3659968f7856f.zip |
Fixed some minor inconsistencies in homunculus packets, in an attempt to make the lvl99 aura show to owner onSpawn.
Still doesn't work as there appears to be a complex packet order dependency...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11851 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mercenary.c')
-rw-r--r-- | src/map/mercenary.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/mercenary.c b/src/map/mercenary.c index 0a9c4aab5..9030e6e90 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -716,11 +716,10 @@ int merc_hom_recv_data(int account_id, struct s_homunculus *sh, int flag) { map_addblock(&hd->bl); clif_spawn(&hd->bl); + clif_send_homdata(sd,SP_ACK,0); clif_hominfo(sd,hd,1); clif_hominfo(sd,hd,0); // send this x2. dunno why, but kRO does that [blackhole89] clif_homskillinfoblock(sd); - clif_hominfo(sd,hd,0); - clif_send_homdata(sd,SP_ACK,0); merc_hom_init_timers(hd); } return 1; |