diff options
author | lordttseven <lordttseven@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-15 10:30:42 +0000 |
---|---|---|
committer | lordttseven <lordttseven@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-15 10:30:42 +0000 |
commit | daeecf3bd0bdb54f43f8aedee98a7c8c68a56992 (patch) | |
tree | 4d57bf55bb3f936bf97ac92402627e90ed1bdd40 /src/map/clif.h | |
parent | 55984b91c03d25e7a6cae535043cd49815cf9e24 (diff) | |
download | hercules-daeecf3bd0bdb54f43f8aedee98a7c8c68a56992.tar.gz hercules-daeecf3bd0bdb54f43f8aedee98a7c8c68a56992.tar.bz2 hercules-daeecf3bd0bdb54f43f8aedee98a7c8c68a56992.tar.xz hercules-daeecf3bd0bdb54f43f8aedee98a7c8c68a56992.zip |
Status change packet cleanup
* fixed a couple typos
* replaced duplicate function clif_status_load with a macro
* normalized and documented status change table related getter abstraction
* put some checks that were previously in multiple places into clif_status_change
* packets are now used as they are on official servers:
- ZC_MSG_STATE_CHANGE for ending statuses and starting them on non-pcs
- ZC_MSG_STATE_CHANGE2 for starting *all* statuses on players
- tick = 9999 for statuses of indeterminate duration
- for non-pc units, a packet is only sent if it has a visual impact on the client; if you notice any missing visual effects, please report them!
* fixed hidden GM characters leaking certain status packets
* fixed hidden GM characters not displaying timers for newly gained statuses
* fixed status end packet never being sent for non-pc, non-mercenary units
* fixed SC_CLOAKING displaying a time bar on the client
* fixed tick being an unsigned int, yet used as a signed int
* removed hard-coded status length exceptions in clif_status_change
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15688 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 583a4e0dd..95f3e6188 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -445,8 +445,8 @@ void clif_combo_delay(struct block_list *bl,int wait); void clif_bladestop(struct block_list *src, int dst_id, int active); void clif_changemapcell(int fd, int m, int x, int y, int type, enum send_target target); -int clif_status_load(struct block_list *bl,int type, int flag); -void clif_status_change(struct block_list *bl,int type,int flag,unsigned int tick,int val1, int val2, int val3); +#define clif_status_load(bl, type, flag) clif_status_change((bl), (type), (flag), 0, 0, 0, 0) +void clif_status_change(struct block_list *bl,int type,int flag,int tick,int val1, int val2, int val3); void clif_wis_message(int fd, const char* nick, const char* mes, int mes_len); void clif_wis_end(int fd, int flag); |