diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/unit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 06d4dc291..85a1b89f9 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1660,7 +1660,8 @@ static int unit_attack_timer_sub(struct block_list* src, int tid, unsigned int t if( src == NULL || src->prev == NULL || target==NULL || target->prev == NULL ) return 0; - if( status_isdead(src) || status_isdead(target) || !status_check_skilluse(src, target, 0, 0) ) + if( status_isdead(src) || status_isdead(target) || + battle_check_target(src,target,BCT_ENEMY) <= 0 || !status_check_skilluse(src, target, 0, 0) ) return 0; // can't attack under these conditions if( src->m != target->m ) |