Added E-2C to USA, France, Bluefor.

This commit is contained in:
SnappyComebacks 2021-03-12 11:12:29 -07:00
parent b5934633fa
commit 47174bbb4d
11 changed files with 22 additions and 10 deletions

View File

@ -17,7 +17,8 @@
],
"awacs": [
"C_130",
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -18,7 +18,8 @@
],
"awacs": [
"C_130",
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -19,7 +19,8 @@
],
"awacs": [
"C_130",
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -28,7 +28,8 @@
"B_1B"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -11,7 +11,8 @@
"SA342Mistral"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -14,7 +14,8 @@
"SA342Mistral"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -21,7 +21,8 @@
"F_117A"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -21,7 +21,8 @@
"B_1B"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -22,7 +22,8 @@
"Hercules"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -22,7 +22,8 @@
"F_22A"
],
"awacs": [
"E_3A"
"E_3A",
"E_2C"
],
"tankers": [
"KC_135",

View File

@ -16,6 +16,7 @@ from dcs.planes import (
F_117A,
MQ_9_Reaper,
E_3A,
E_2C,
KC130,
KC_135,
A_10C,
@ -67,6 +68,7 @@ class TestFactionLoader(unittest.TestCase):
self.assertEqual(len(faction.awacs), 1)
self.assertIn(E_3A, faction.awacs)
self.assertIn(E_2C, faction.awacs)
self.assertEqual(len(faction.tankers), 2)
self.assertIn(KC_135, faction.tankers)