diff options
author | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-24 08:29:24 +0000 |
---|---|---|
committer | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-03-24 08:29:24 +0000 |
commit | 6910817b3169e909c1671c00b515dd48f844cce6 (patch) | |
tree | 3051910d7070017ce50ade4416f7a136fdd51385 /src/map/status.c | |
parent | fb1fb29726203bd218e307a74855444bd66bbc72 (diff) | |
download | hercules-6910817b3169e909c1671c00b515dd48f844cce6.tar.gz hercules-6910817b3169e909c1671c00b515dd48f844cce6.tar.bz2 hercules-6910817b3169e909c1671c00b515dd48f844cce6.tar.xz hercules-6910817b3169e909c1671c00b515dd48f844cce6.zip |
Yet another fix...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13615 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 05061ec5a..bfa00e3c7 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6228,7 +6228,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val if( vd && (pcdb_checkid(vd->class_) || bl->type == BL_MER ) ) //Only for players sprites, client crashes if they receive this for a mob o.O [Skotlex] clif_status_change(bl,StatusIconChangeTable[type],1,tick); else if( sd ) //Send packet to self otherwise (disguised player?) - clif_status_load(bl,StatusIconChangeTable[type],1,tick); + clif_status_load(bl,StatusIconChangeTable[type],1); //Don't trust the previous sce assignment, in case the SC ended somewhere between there and here. if((sce=sc->data[type])) |