Follow up r16143 minor minor performance improvement
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16145 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
79767f97bd
commit
0518ee5547
@ -4132,7 +4132,6 @@ int clif_damage(struct block_list* src, struct block_list* dst, unsigned int tic
|
||||
{
|
||||
unsigned char buf[33];
|
||||
struct status_change *sc;
|
||||
int dir=0;
|
||||
#if PACKETVER < 20071113
|
||||
const int cmd = 0x8a;
|
||||
#else
|
||||
@ -4151,8 +4150,6 @@ int clif_damage(struct block_list* src, struct block_list* dst, unsigned int tic
|
||||
}
|
||||
}
|
||||
|
||||
dir = unit_getdir(src);
|
||||
|
||||
WBUFW(buf,0)=cmd;
|
||||
WBUFL(buf,2)=src->id;
|
||||
WBUFL(buf,6)=dst->id;
|
||||
@ -4201,8 +4198,9 @@ int clif_damage(struct block_list* src, struct block_list* dst, unsigned int tic
|
||||
clif_send(buf,packet_len(cmd),src,SELF);
|
||||
}
|
||||
|
||||
if(src == dst)
|
||||
unit_setdir(src,dir);
|
||||
if(src == dst) {
|
||||
unit_setdir(src,unit_getdir(src));
|
||||
}
|
||||
//Return adjusted can't walk delay for further processing.
|
||||
return clif_calc_walkdelay(dst,ddelay,type,damage+damage2,div);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user