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 @@ -1972,7 +1972,7 @@ void AIPlayer::repairStructure(ObjectID structure)
1972
1972
return ;
1973
1973
}
1974
1974
}
1975
- if (m_structuresInQueue= =MAX_STRUCTURES_TO_REPAIR) {
1975
+ if (m_structuresInQueue> =MAX_STRUCTURES_TO_REPAIR) {
1976
1976
DEBUG_LOG ((" Structure repair queue is full, ignoring repair request. JBA\n " ));
1977
1977
return ;
1978
1978
}
Original file line number Diff line number Diff line change @@ -2301,7 +2301,7 @@ void AIPlayer::repairStructure(ObjectID structure)
2301
2301
return ;
2302
2302
}
2303
2303
}
2304
- if (m_structuresInQueue= =MAX_STRUCTURES_TO_REPAIR) {
2304
+ if (m_structuresInQueue> =MAX_STRUCTURES_TO_REPAIR) {
2305
2305
DEBUG_LOG ((" Structure repair queue is full, ignoring repair request. JBA\n " ));
2306
2306
return ;
2307
2307
}
You can’t perform that action at this time.
0 commit comments