diff options
-rw-r--r-- | src/map/battle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index b9112fe26..80a875c31 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -6609,7 +6609,7 @@ static int battle_check_target(struct block_list *src, struct block_list *target s_bl = src; if ((flag & BCT_ENEMY) != 0 && (status_get_mode(s_bl) & MD_BOSS) == 0 && (map->getcell(m, src, src->x, src->y, CELL_CHKBASILICA) != 0 - || map->getcell(m, src, target->x, target->y, CELL_CHKBASILICA))) { + || map->getcell(m, src, target->x, target->y, CELL_CHKBASILICA) != 0)) { return -1; } |