it has been confirmed on a official server that AoE skills (e.g. storm gust) do not stop functioning when you are dead

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15298 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
shennetsind 2011-12-29 00:15:43 +00:00
parent 2e2923cbcd
commit 58a6d63f4b

View File

@ -8966,7 +8966,7 @@ int skill_unit_onplace_timer (struct skill_unit *src, struct block_list *bl, uns
nullpo_ret(src); nullpo_ret(src);
nullpo_ret(bl); nullpo_ret(bl);
if (bl->prev==NULL || !src->alive || status_isdead(bl)) if (bl->prev==NULL || !src->alive)
return 0; return 0;
nullpo_ret(sg=src->group); nullpo_ret(sg=src->group);