* Fixed pet's equip would visually disappear when it's walk speed was changed while it was standing (related r14838).
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14847 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
36fd8bcf19
commit
dd1cc7c836
@ -1,5 +1,7 @@
|
|||||||
Date Added
|
Date Added
|
||||||
|
|
||||||
|
2011/06/13
|
||||||
|
* Fixed pet's equip would visually disappear when it's walk speed was changed while it was standing (related r14838). [Ai4rei]
|
||||||
2011/06/11
|
2011/06/11
|
||||||
* Added support for new skill usage notification packet 0x7fb (ZC_USESKILL_ACK2). [Ai4rei]
|
* Added support for new skill usage notification packet 0x7fb (ZC_USESKILL_ACK2). [Ai4rei]
|
||||||
* Fixed party invite packet 0xfe (ZC_REQ_JOIN_GROUP) using account id of the inviter rather than party id. [Ai4rei]
|
* Fixed party invite packet 0xfe (ZC_REQ_JOIN_GROUP) using account id of the inviter rather than party id. [Ai4rei]
|
||||||
|
@ -1376,6 +1376,12 @@ static void clif_move2(struct block_list *bl, struct view_data *vd, struct unit_
|
|||||||
clif_specialeffect(&md->bl,421,AREA);
|
clif_specialeffect(&md->bl,421,AREA);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case BL_PET:
|
||||||
|
if( vd->head_bottom )
|
||||||
|
{// needed to display pet equip properly
|
||||||
|
clif_pet_equip_area((TBL_PET*)bl);
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user