summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-14 16:50:12 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-14 16:50:12 +0000
commitae38fdb123c207515468e409cd553f1a185c02e0 (patch)
tree8071bce1603fa930f5f6646ecbf3c1a860da213b /src/map/skill.c
parent21912bafe72cf7685679cf95b705ad0d115ff7c7 (diff)
downloadhercules-ae38fdb123c207515468e409cd553f1a185c02e0.tar.gz
hercules-ae38fdb123c207515468e409cd553f1a185c02e0.tar.bz2
hercules-ae38fdb123c207515468e409cd553f1a185c02e0.tar.xz
hercules-ae38fdb123c207515468e409cd553f1a185c02e0.zip
- Fixed warmth skills draining SP of the target, not the caster.
- If val3 for a combo is set, then the combo will no longer delay attack/movement. - When TK_DODGE triggers, it will no longer delay your attack or movement. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8757 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index f974a7f80..51f3286e3 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -7069,7 +7069,7 @@ int skill_unit_onplace_timer (struct skill_unit *src, struct block_list *bl, uns
if(bl->type==BL_PC)
//Only damage SP [Skotlex]
status_zap(bl, 0, 60);
- else if(status_charge(bl, 0, 2))
+ else if(status_charge(ss, 0, 2))
//Otherwise, Knockback attack.
skill_attack(BF_WEAPON,ss,&src->bl,bl,sg->skill_id,sg->skill_lv,tick,0);
break;