diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-07 20:58:32 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-07 20:58:32 +0000 |
commit | 77a227decf5603bb499ccf0e8a8a20733d16648f (patch) | |
tree | 4c41d25b8ac7994609600cdf27a13bc2ee15d2e6 /src/map/clif.h | |
parent | 79b7a40abaf1b4855cd3c828d96f61dd71750814 (diff) | |
download | hercules-77a227decf5603bb499ccf0e8a8a20733d16648f.tar.gz hercules-77a227decf5603bb499ccf0e8a8a20733d16648f.tar.bz2 hercules-77a227decf5603bb499ccf0e8a8a20733d16648f.tar.xz hercules-77a227decf5603bb499ccf0e8a8a20733d16648f.zip |
- Removed the equip id from the clif_pet_equip packet as it is not used for anything.
- Corrected the pet-armor field of the pet not being updated on equip/unequip of accessories, making them not show up inmediately.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7577 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 64c0ef2eb..472d41de6 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -315,7 +315,7 @@ int clif_send_petdata(struct map_session_data *sd,int type,int param); int clif_send_petstatus(struct map_session_data *sd);
int clif_pet_emotion(struct pet_data *pd,int param);
int clif_pet_performance(struct block_list *bl,int param);
-int clif_pet_equip(struct pet_data *pd,int nameid);
+int clif_pet_equip(struct pet_data *pd);
int clif_pet_food(struct map_session_data *sd,int foodid,int fail);
int clif_send (unsigned char *buf, int len, struct block_list *bl, int type);
|