From aeb20e839e43404f15282f4def0163ddc33db643 Mon Sep 17 00:00:00 2001 From: Per Inge Mathisen Date: Wed, 3 Nov 2010 19:46:24 +0100 Subject: [PATCH] Make AI players able to produce more than one thing in each factory again. --- src/structure.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/structure.c b/src/structure.c index 540d0d964..de907751f 100644 --- a/src/structure.c +++ b/src/structure.c @@ -3558,6 +3558,10 @@ static void aiUpdateStructure(STRUCTURE *psStructure, bool isMission) { doNextProduction(psStructure, (DROID_TEMPLATE *)pSubject); } + else if (myResponsibility(psStructure->player)) + { + cancelProduction(psStructure, ModeQueue); + } } } }