diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 13:06:00 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 13:06:00 +0000 |
commit | 3714d8647c6c11bd830c3de558ba37a0b9bcf68f (patch) | |
tree | 541060e32a2cd097b10f38474c7fc43af780df2a /src/map/clif.h | |
parent | f5bb1621cc8fb3171fe28a9a7c16219fe120f3bb (diff) | |
download | hercules-3714d8647c6c11bd830c3de558ba37a0b9bcf68f.tar.gz hercules-3714d8647c6c11bd830c3de558ba37a0b9bcf68f.tar.bz2 hercules-3714d8647c6c11bd830c3de558ba37a0b9bcf68f.tar.xz hercules-3714d8647c6c11bd830c3de558ba37a0b9bcf68f.zip |
* Various additions and updates to the comments and documentation of packets in clif.
- Renamed clif_01ac to clif_skillunit_update to make it look less 'mysterious'.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14542 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 68e26ac24..dfa622022 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -232,9 +232,9 @@ int clif_changeoption(struct block_list*); // area int clif_changeoption2(struct block_list*); // area int clif_useitemack(struct map_session_data*,int,int,int); // self void clif_GlobalMessage(struct block_list* bl, const char* message); -void clif_createchat(struct map_session_data* sd, int fail); // self +void clif_createchat(struct map_session_data* sd, int flag); // self int clif_dispchat(struct chat_data*,int); // area or fd -int clif_joinchatfail(struct map_session_data*,int); // self +int clif_joinchatfail(struct map_session_data* sd,int flag); // self int clif_joinchatok(struct map_session_data*,struct chat_data*); // self int clif_addchat(struct chat_data*,struct map_session_data*); // chat void clif_changechatowner(struct chat_data* cd, struct map_session_data* sd); // chat @@ -312,7 +312,7 @@ int clif_produceeffect(struct map_session_data* sd,int flag,int nameid); void clif_skill_setunit(struct skill_unit *unit); void clif_skill_delunit(struct skill_unit *unit); -void clif_01ac(struct block_list* bl); +void clif_skillunit_update(struct block_list* bl); int clif_autospell(struct map_session_data *sd,int skilllv); void clif_devotion(struct block_list *src, struct map_session_data *tsd); |