From 20b96b7fc5a423389a1359cf2110a8231fb11656 Mon Sep 17 00:00:00 2001 From: skotlex Date: Mon, 22 May 2006 19:56:26 +0000 Subject: - Updated skill_delayfix to return 0 for mobs since they have no skill delay other than the one specified in mob_skill_db git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6699 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/skill.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/map/skill.c b/src/map/skill.c index 784f088ae..c122b2dd2 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -8309,6 +8309,9 @@ int skill_delayfix(struct block_list *bl, int skill_id, int skill_lv) nullpo_retr(0, bl); + if (bl->type == BL_MOB) + return 0; //Mobs have no delay other than the skill-specific delay in their skill db. [Skotlex] + // instant cast attack skills depend on aspd as delay [celest] if (time == 0) { if (skill_get_type(skill_id) == BF_WEAPON && !(skill_get_nk(skill_id)&NK_NO_DAMAGE)) -- cgit v1.2.3-70-g09d2