File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
GeneralsMD/Code/GameEngine/Source/GameLogic/AI
Generals/Code/GameEngine/Source/GameLogic/AI Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ void AISkirmishPlayer::processBaseBuilding( void )
232
232
}
233
233
}
234
234
}
235
- if (powerPlan && powerInfo && !powerPlan->isEquivalentTo (bldgPlan)) {
235
+ if (powerInfo && powerPlan && !powerPlan->isEquivalentTo (bldgPlan)) {
236
236
if (!powerUnderConstruction) {
237
237
bldgPlan = powerPlan;
238
238
bldgInfo = powerInfo;
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ void AISkirmishPlayer::processBaseBuilding( void )
239
239
}
240
240
}
241
241
}
242
- if (powerPlan && powerInfo && !powerPlan->isEquivalentTo (bldgPlan)) {
242
+ if (powerInfo && powerPlan && !powerPlan->isEquivalentTo (bldgPlan)) {
243
243
if (!powerUnderConstruction) {
244
244
bldgPlan = powerPlan;
245
245
bldgInfo = powerInfo;
You can’t perform that action at this time.
0 commit comments