summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuilherme G. Menaldo <guilherme.menaldo@outlook.com>2018-10-02 00:42:43 -0300
committerGuilherme G. Menaldo <guilherme.menaldo@outlook.com>2020-02-08 16:39:38 -0300
commit20e25a820de38ced1e1dfa8376d7c5434f100be8 (patch)
treefc4b6cd85e89a0fb5301bc454dc4eadc48c7c5f9
parentc03722679a01e5f181c2138565e95a6b0981a124 (diff)
downloadhercules-20e25a820de38ced1e1dfa8376d7c5434f100be8.tar.gz
hercules-20e25a820de38ced1e1dfa8376d7c5434f100be8.tar.bz2
hercules-20e25a820de38ced1e1dfa8376d7c5434f100be8.tar.xz
hercules-20e25a820de38ced1e1dfa8376d7c5434f100be8.zip
Fixed duplicated 'Skill Failed' message on Asura Strike
-rw-r--r--src/map/skill.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 4579b2ea7..c623cb8d9 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -5882,7 +5882,8 @@ static int skill_castend_id(int tid, int64 tick, int id, intptr_t data)
clif->slide(src,src->x,src->y);
clif->spiritball(src);
}
- clif->skill_fail(sd, ud->skill_id, USESKILL_FAIL_LEVEL, 0, 0);
+ // "Skill Failed" message was already shown when checking that target is invalid
+ //clif->skill_fail(sd, ud->skill_id, USESKILL_FAIL_LEVEL, 0, 0);
}
}