diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-14 19:53:14 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-14 19:53:14 +0000 |
commit | a25c252b511f2b094112b19ae63226689558348e (patch) | |
tree | 13442a545563c5935610dfc03aebe5054dfb3bdb | |
parent | d83a44942aa80b5392a1b7cf519ccfe83ead0b6e (diff) | |
download | hercules-a25c252b511f2b094112b19ae63226689558348e.tar.gz hercules-a25c252b511f2b094112b19ae63226689558348e.tar.bz2 hercules-a25c252b511f2b094112b19ae63226689558348e.tar.xz hercules-a25c252b511f2b094112b19ae63226689558348e.zip |
- Oops, fixed an error in the GTB bounce code.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11206 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 0740aa8ae..c81aa3aaf 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2805,7 +2805,7 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, int if (skillid && skill_get_type(skillid) == BF_MAGIC && status_isimmune(bl) == 100) { //GTB makes all targetted magic display miss with a single bolt. - clif_skill_damage(src, bl, tick, status_get_amotion(src), tstatus->dmotion, + clif_skill_damage(src, bl, tick, status_get_amotion(src), status_get_dmotion(bl), 0, 1, skillid, skilllv, skill_get_hit(skillid)); return 1; } |