diff options
author | shennetsind <ind@henn.et> | 2013-04-14 22:40:05 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-14 22:40:05 -0300 |
commit | 83291734c96cdb4c337ef1b8fac5321bcaf86815 (patch) | |
tree | 12530e0134063c6fb718229dc536816544acd94d /src/map/clif.c | |
parent | 3146f9e13bf8d531fca88638e0ca4bd7d373473f (diff) | |
parent | 7ba570eabc84865566f4335269f00b3640fa09db (diff) | |
download | hercules-83291734c96cdb4c337ef1b8fac5321bcaf86815.tar.gz hercules-83291734c96cdb4c337ef1b8fac5321bcaf86815.tar.bz2 hercules-83291734c96cdb4c337ef1b8fac5321bcaf86815.tar.xz hercules-83291734c96cdb4c337ef1b8fac5321bcaf86815.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 6dcf33a32..b1998de77 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -5409,12 +5409,12 @@ void clif_status_change(struct block_list *bl,int type,int flag,int tick,int val WBUFL(buf,4)=bl->id; WBUFB(buf,8)=flag; #if PACKETVER >= 20120618 - WBUFL(buf,9)=tick;/* at this stage remain and total are the same value I believe */ - WBUFL(buf,13)=tick; if(flag && battle_config.display_status_timers && sd) { if (tick <= 0) tick = 9999; // this is indeed what official servers do - + + WBUFL(buf,9) = tick;/* at this stage remain and total are the same value I believe */ + WBUFL(buf,13) = tick; WBUFL(buf,17) = val1; WBUFL(buf,21) = val2; WBUFL(buf,25) = val3; |