mirror of
https://github.com/ENSL/NS.git
synced 2025-02-16 17:11:15 +00:00
Fixed mistake in scan requests
Commander was dropping phase gates instead of scans. Oops!
This commit is contained in:
parent
d886d9b2e3
commit
ddc8839d9a
1 changed files with 2 additions and 2 deletions
|
@ -2872,7 +2872,7 @@ bool AICOMM_CheckForNextSupportAction(AvHAIPlayer* pBot)
|
|||
|
||||
if (!vIsZero(ProjectedDeployLocation))
|
||||
{
|
||||
bool bSuccess = AICOMM_DeployStructure(pBot, STRUCTURE_MARINE_PHASEGATE, ProjectedDeployLocation, STRUCTURE_PURPOSE_NONE);
|
||||
bool bSuccess = AICOMM_DeployItem(pBot, DEPLOYABLE_ITEM_SCAN, ProjectedDeployLocation);
|
||||
|
||||
if (bSuccess)
|
||||
{
|
||||
|
@ -2885,7 +2885,7 @@ bool AICOMM_CheckForNextSupportAction(AvHAIPlayer* pBot)
|
|||
|
||||
if (!vIsZero(DeployLocation))
|
||||
{
|
||||
bool bSuccess = AICOMM_DeployStructure(pBot, STRUCTURE_MARINE_PHASEGATE, DeployLocation, STRUCTURE_PURPOSE_NONE);
|
||||
bool bSuccess = AICOMM_DeployItem(pBot, DEPLOYABLE_ITEM_SCAN, DeployLocation);
|
||||
|
||||
if (bSuccess)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue