diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-31 19:09:02 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-31 19:09:02 +0000 |
commit | a6095fa832df5260845fdc2063acbb450fbc415c (patch) | |
tree | e4a82f51388dace78bc6dac3c80558a5bb6c44ea /src/map/clif.c | |
parent | a97e97e7ef25feec0b2cc7106bc8f25e014b5d8f (diff) | |
download | hercules-a6095fa832df5260845fdc2063acbb450fbc415c.tar.gz hercules-a6095fa832df5260845fdc2063acbb450fbc415c.tar.bz2 hercules-a6095fa832df5260845fdc2063acbb450fbc415c.tar.xz hercules-a6095fa832df5260845fdc2063acbb450fbc415c.zip |
Fixed bugreport:5812 november 2011 or earlier clients shall now display the robes properly.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16187 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 34a1fb0eb..e765b44c9 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1353,6 +1353,10 @@ int clif_spawn(struct block_list *bl) //New Mounts are not complaint to the original method, so we gotta tell this guy that he is mounting. clif_status_load_notick(&sd->bl,SI_ALL_RIDING,2,1,0,0); } + #if PACKETVER <= 20111116 + if (sd->status.robe) + clif_refreshlook(bl,bl->id,LOOK_ROBE,sd->status.robe,AREA); + #endif } break; case BL_MOB: |