From 21aab2567e2059bd2d377d70fc1b437e5cc28b0e Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 24 May 2012 21:08:21 +0000 Subject: Follow up r16143 minor minor performance improvement git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16145 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/clif.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/map/clif.c b/src/map/clif.c index d626c94b1..97e96ec8e 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -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); } -- cgit v1.2.3-70-g09d2