From 06f00cae53503342339f91f1b05a036c655456aa Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 13 Jan 2020 22:21:26 +0100 Subject: [PATCH] Bug 2632: no flying convoy --- src/spells/flyingship.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells/flyingship.c b/src/spells/flyingship.c index fb6a8faeb..3bf9b61b1 100644 --- a/src/spells/flyingship.c +++ b/src/spells/flyingship.c @@ -56,7 +56,7 @@ int sp_flying_ship(castorder * co) if (pa->param[0]->flag == TARGET_NOTFOUND) return 0; sh = pa->param[0]->data.sh; - if (sh->type->construction->maxsize > 50) { + if (sh->number > 1 || sh->type->construction->maxsize > 50) { ADDMSG(&caster->faction->msgs, msg_feedback(caster, co->order, "error_flying_ship_too_big", "ship", sh)); return 0;