Skip to content

Commit

Permalink
Added RCS missiles to SwitchToAirMissile().
Browse files Browse the repository at this point in the history
  • Loading branch information
Yskinator committed Aug 21, 2015
1 parent f3df251 commit f160bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BahaTurret/MissileFire.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2254,7 +2254,7 @@ bool SwitchToAirMissile()
{
foreach(var ml in selectedWeapon.GetPart().FindModulesImplementing<MissileLauncher>())
{
if(ml.guidanceMode == MissileLauncher.GuidanceModes.AAMLead || ml.guidanceMode == MissileLauncher.GuidanceModes.AAMPure)
if(ml.guidanceMode == MissileLauncher.GuidanceModes.AAMLead || ml.guidanceMode == MissileLauncher.GuidanceModes.AAMPure || ml.guidanceMode == MissileLauncher.GuidanceModes.RCS)
{
return true;
}
Expand Down

0 comments on commit f160bc7

Please sign in to comment.