diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-19 00:55:46 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-19 00:55:46 +0000 |
commit | 72d890661194b248620c5c353777cb96be18c821 (patch) | |
tree | 1d87db18458896dbca4c3a42fad1697f66c65204 /src/map/pc.c | |
parent | 9cf344e5c49ae0565a3ae228e8ca0126afef547a (diff) | |
download | hercules-72d890661194b248620c5c353777cb96be18c821.tar.gz hercules-72d890661194b248620c5c353777cb96be18c821.tar.bz2 hercules-72d890661194b248620c5c353777cb96be18c821.tar.xz hercules-72d890661194b248620c5c353777cb96be18c821.zip |
- Cleaned up some the pet armor display code.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11034 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 098c0ca94..2ab6fbb0c 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4859,7 +4859,7 @@ int pc_dead(struct map_session_data *sd,struct block_list *src) pet->intimate -= sd->pd->petDB->die; if(pet->intimate < 0) pet->intimate = 0; - clif_send_petdata(sd,1,pet->intimate); + clif_send_petdata(sd,sd->pd,1,pet->intimate); } if(sd->pd->target_id) // Unlock all targets... pet_unlocktarget(sd->pd); |