diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-22 16:47:03 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-22 16:47:03 +0000 |
commit | 2780b8440b598c0ceb8a391cfb4c2b9724511651 (patch) | |
tree | f47c4a6a5748c107f0a9370ef3e077dbc628c3ee /src/map/pc.c | |
parent | 2fb26a430a18adfe09a97f9e6e5d0f1972a727eb (diff) | |
download | hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.tar.gz hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.tar.bz2 hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.tar.xz hercules-2780b8440b598c0ceb8a391cfb4c2b9724511651.zip |
- Applied Toms's suggested corrections to homun code.
- Corrected Cannibalize/Marine Sphere ignoring the selected summon spot.
- Fixed looting pets ignoring the item pick-up priority of other players.
- Should have fixed a signess warning in login txt.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7828 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index e56e84ce3..d2556b0dc 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4758,6 +4758,7 @@ int pc_dead(struct map_session_data *sd,struct block_list *src) if(sd->status.hom_id > 0 && sd->hd) //orn { sd->homunculus.vaporize = 1; + clif_hominfo(sd,0); merc_stop_walking(sd->hd, 1) ; merc_stop_attack(sd->hd) ; merc_hom_delete(sd->hd,0); |