summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-03 17:53:57 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-03 17:53:57 +0000
commit0eb4ba12344652dd948c3aece8264865ffa857e5 (patch)
tree7cb3e638401ac4f4e447f85fa559c0f2008d5997 /src/map/skill.c
parent2e6efcc4c718d89bf832cd10b5261add097c8bf6 (diff)
downloadhercules-0eb4ba12344652dd948c3aece8264865ffa857e5.tar.gz
hercules-0eb4ba12344652dd948c3aece8264865ffa857e5.tar.bz2
hercules-0eb4ba12344652dd948c3aece8264865ffa857e5.tar.xz
hercules-0eb4ba12344652dd948c3aece8264865ffa857e5.zip
- Kaite, Kaute will now show a skill effect when they trigger.
- Fusion's cast time reduced to 0. - Knowledge will now only trigger if you logon to the memorized map, not walk into it. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6462 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 80b1bd817..10b355d3f 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -1746,6 +1746,7 @@ int skill_attack( int attack_type, struct block_list* src, struct block_list *ds
if (attack_type&BF_MAGIC && sc && sc->data[SC_KAITE].timer != -1
&& !(status_get_mode(src)&MD_BOSS) && (sd || status_get_lv(dsrc) <= 80) //Works on players or mobs with level under 80.
) { //Bounce back the skill.
+ clif_skill_nodamage(bl,bl,SL_KAITE,sc->data[SC_KAITE].val1,1);
if (--sc->data[SC_KAITE].val2 <= 0)
status_change_end(bl, SC_KAITE, -1);
bl = src; //Just make the skill attack yourself @.@