From f9377b9880465569c1dfda48e7fc12ec3786b424 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Fri, 15 Sep 2023 13:35:23 +0300 Subject: [PATCH 11/11] AI: Make missile carriers able to launch multiple missiles See osdn #45927 Signed-off-by: Marko Lindqvist --- ai/default/daihunter.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ai/default/daihunter.c b/ai/default/daihunter.c index 2c1cc46594..bdc0339ec6 100644 --- a/ai/default/daihunter.c +++ b/ai/default/daihunter.c @@ -380,8 +380,9 @@ static void dai_hunter_try_launch(struct ai_type *ait, dai_unit_attack(ait, missile, unit_tile(sucker)); } } - target = game_unit_by_number(target_sanity); /* Sanity */ - break; /* try next missile, if any */ + if (game_unit_by_number(target_sanity) == NULL) { + return; /* Target killed */ + } } } /* if */ } unit_list_iterate_safe_end; -- 2.40.1