diff options
author | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-24 08:24:57 +0000 |
---|---|---|
committer | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-24 08:24:57 +0000 |
commit | fb1fb29726203bd218e307a74855444bd66bbc72 (patch) | |
tree | 41045fc2e3a959d1f2ec60c09861f7bfb4bf99b6 /src | |
parent | 35d7b2c7661bad6596a48c81f24a044a91fa346b (diff) | |
download | hercules-fb1fb29726203bd218e307a74855444bd66bbc72.tar.gz hercules-fb1fb29726203bd218e307a74855444bd66bbc72.tar.bz2 hercules-fb1fb29726203bd218e307a74855444bd66bbc72.tar.xz hercules-fb1fb29726203bd218e307a74855444bd66bbc72.zip |
Quick fix for Sara's commit
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13614 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index c6fcb924b..66a390568 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -4548,14 +4548,14 @@ int clif_status_change(struct block_list *bl,int type,int flag,unsigned int tick type == SI_READYTURN || type == SI_READYCOUNTER || type == SI_DODGE || type == SI_DEVIL || type == SI_NIGHT || type == SI_INTRAVISION) tick=0; - if( battle_config.display_skill_timers && tick>0 ) + if( battle_config.display_status_timers && tick>0 ) WBUFW(buf,0)=0x043f; else WBUFW(buf,0)=0x0196; WBUFW(buf,2)=type; WBUFL(buf,4)=bl->id; WBUFB(buf,8)=flag; - if( battle_config.display_skill_timers && tick>0 ) + if( battle_config.display_status_timers && tick>0 ) clif_send(buf,packet_len(0x196),bl,AREA); else { WBUFL(buf,9)=tick; |