From f5bc81ba1313166f2e6a83a0cb2a15f9b302893b Mon Sep 17 00:00:00 2001 From: ai4rei Date: Sat, 19 Nov 2011 09:49:31 +0000 Subject: * Fixed wrong damage numbers being displayed when the damage source was disguised (bugreport:5093, since r14979). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14996 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 2 ++ src/map/clif.c | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 737b65acd..04715b6b6 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -1,5 +1,7 @@ Date Added +2011/11/19 + * Fixed wrong damage numbers being displayed when the damage source was disguised (bugreport:5093, since r14979). [Ai4rei] 2011/11/17 * Added a check to WFIFOSET to detect zero-length 'sets' of packets, that could cause memory corruption (through code after WFIFOHEAD(fd,packet_len(cmd)) where the length is 0). [Ai4rei] 2011/11/16 diff --git a/src/map/clif.c b/src/map/clif.c index 01de1e51d..027d589bb 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3918,11 +3918,12 @@ int clif_damage(struct block_list* src, struct block_list* dst, unsigned int tic WBUFL(buf,2) = -src->id; if (disguised(dst)) WBUFL(buf,6) = dst->id; - if(damage > 0) WBUFW(buf,22) = -1; #if PACKETVER < 20071113 + if(damage > 0) WBUFW(buf,22) = -1; if(damage2 > 0) WBUFW(buf,27) = -1; #else - if(damage2 > 0) WBUFW(buf,29) = -1; + if(damage > 0) WBUFL(buf,22) = -1; + if(damage2 > 0) WBUFL(buf,29) = -1; #endif clif_send(buf,packet_len(cmd),src,SELF); } -- cgit v1.2.3-70-g09d2