summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-01 22:21:26 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-01 22:21:26 +0000
commit83be2ad0b8c0543bc7403a0cc40b5ec1545f3ec2 (patch)
tree1002fc2bc3da5366baddf56a3e5857b7b4aaa81c /src/map/clif.c
parenta26df9b75e9401b0f590dd6cde4680394eaf1e7a (diff)
downloadhercules-83be2ad0b8c0543bc7403a0cc40b5ec1545f3ec2.tar.gz
hercules-83be2ad0b8c0543bc7403a0cc40b5ec1545f3ec2.tar.bz2
hercules-83be2ad0b8c0543bc7403a0cc40b5ec1545f3ec2.tar.xz
hercules-83be2ad0b8c0543bc7403a0cc40b5ec1545f3ec2.zip
- Fixed berserk not raising your HP to your new cap.
- Fixed ground-skills not displaying damage done. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5851 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 6636865c9..21c8bcbcc 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -4412,8 +4412,10 @@ int clif_skill_setunit(struct skill_unit *unit)
bl=map_id2bl(unit->group->src_id);
- if (unit->group->unit_id == UNT_ATTACK_SKILLS)
- return 0; //These are invisible client-side. [Skotlex]
+// These are invisible client-side, but are necessary because
+// otherwise the client will not know who caused the attack.
+// if (unit->group->unit_id == UNT_ATTACK_SKILLS)
+// return 0;
#if PACKETVER < 3
memset(WBUFP(buf, 0),0,packet_len_table[0x11f]);