Skip to content

Commit

Permalink
Support for LBAS recon
Browse files Browse the repository at this point in the history
-fix for error in dialogairbasecorpssimulation
  • Loading branch information
gre4bee committed Jan 5, 2019
1 parent b2c1df5 commit 73a11de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ElectronicObserver/Data/EquipmentDataMaster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ public bool IsAircraft
case EquipmentTypes.SeaplaneRecon:
case EquipmentTypes.FlyingBoat:
case EquipmentTypes.JetRecon:
case EquipmentTypes.LandBasedRecon:
return true;

default:
Expand Down Expand Up @@ -279,6 +280,7 @@ public bool IsReconAircraft
case EquipmentTypes.SeaplaneRecon:
case EquipmentTypes.FlyingBoat:
case EquipmentTypes.JetRecon:
case EquipmentTypes.LandBasedRecon:
return true;

default:
Expand Down
2 changes: 2 additions & 0 deletions ElectronicObserver/Data/EquipmentTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ public enum EquipmentTypes

/// <summary>局地戦闘機</summary>
Interceptor = 48,
// <summary> landbased recon aircraft </summary>
LandBasedRecon = 49,

/// <summary>輸送機材</summary>
TransportMaterial = 50,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public partial class DialogBaseAirCorpsSimulation : Form
EquipmentTypes.SeaplaneFighter,
EquipmentTypes.LandBasedAttacker,
EquipmentTypes.Interceptor,
EquipmentTypes.LandBasedRecon,
EquipmentTypes.JetFighter,
EquipmentTypes.JetBomber,
EquipmentTypes.JetTorpedo,
Expand Down Expand Up @@ -63,6 +64,7 @@ public partial class DialogBaseAirCorpsSimulation : Form
EquipmentTypes.SeaplaneRecon,
EquipmentTypes.FlyingBoat,
EquipmentTypes.JetRecon,
EquipmentTypes.LandBasedRecon
};


Expand Down

0 comments on commit 73a11de

Please sign in to comment.