Skip to content

Commit

Permalink
Partial revert of 58b2c8e.
Browse files Browse the repository at this point in the history
  • Loading branch information
KJeff01 committed Jun 3, 2018
1 parent 0678736 commit 751eb50
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion data/base/script/campaign/libcampaign.js
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,14 @@ function __camTacticsTickForGroup(group)
}
else
{
orderDroidLoc(droid, DORDER_SCOUT, target.x, target.y);
if (defending || !(artilleryLike || isVTOL(droid)))
{
orderDroidLoc(droid, DORDER_MOVE, target.x, target.y);
}
else
{
orderDroidLoc(droid, DORDER_SCOUT, target.x, target.y);
}
}
}
}
Expand Down

0 comments on commit 751eb50

Please sign in to comment.