Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for #577 L-39 BACK_FLAPS_*_LAMP described as "Front..." #578

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Scripts/DCS-BIOS/doc/doc_assets/L-39.jsonp
Original file line number Diff line number Diff line change
Expand Up @@ -10378,7 +10378,7 @@ docdata["L-39"] =
"BACK_FLAPS_DN_LAMP": {
"category": "Warning, Caution and IndicatorLights",
"control_type": "led",
"description": "Front Flaps 44° Lamp (green)",
"description": "Back Flaps 44° Lamp (green)",
"identifier": "BACK_FLAPS_DN_LAMP",
"inputs": [ ],
"outputs": [ {
Expand All @@ -10396,7 +10396,7 @@ docdata["L-39"] =
"BACK_FLAPS_TO_LAMP": {
"category": "Warning, Caution and IndicatorLights",
"control_type": "led",
"description": "Front Flaps 25° Lamp (green)",
"description": "Back Flaps 25° Lamp (green)",
"identifier": "BACK_FLAPS_TO_LAMP",
"inputs": [ ],
"outputs": [ {
Expand All @@ -10414,7 +10414,7 @@ docdata["L-39"] =
"BACK_FLAPS_UP_LAMP": {
"category": "Warning, Caution and IndicatorLights",
"control_type": "led",
"description": "Front Flaps 0° Lamp (green)",
"description": "Back Flaps 0° Lamp (green)",
"identifier": "BACK_FLAPS_UP_LAMP",
"inputs": [ ],
"outputs": [ {
Expand Down
6 changes: 3 additions & 3 deletions Scripts/DCS-BIOS/doc/json/L-39.json
Original file line number Diff line number Diff line change
Expand Up @@ -10377,7 +10377,7 @@
"BACK_FLAPS_DN_LAMP": {
"category": "Warning, Caution and IndicatorLights",
"control_type": "led",
"description": "Front Flaps 44° Lamp (green)",
"description": "Back Flaps 44° Lamp (green)",
"identifier": "BACK_FLAPS_DN_LAMP",
"inputs": [ ],
"outputs": [ {
Expand All @@ -10395,7 +10395,7 @@
"BACK_FLAPS_TO_LAMP": {
"category": "Warning, Caution and IndicatorLights",
"control_type": "led",
"description": "Front Flaps 25° Lamp (green)",
"description": "Back Flaps 25° Lamp (green)",
"identifier": "BACK_FLAPS_TO_LAMP",
"inputs": [ ],
"outputs": [ {
Expand All @@ -10413,7 +10413,7 @@
"BACK_FLAPS_UP_LAMP": {
"category": "Warning, Caution and IndicatorLights",
"control_type": "led",
"description": "Front Flaps 0° Lamp (green)",
"description": "Back Flaps 0° Lamp (green)",
"identifier": "BACK_FLAPS_UP_LAMP",
"inputs": [ ],
"outputs": [ {
Expand Down
6 changes: 3 additions & 3 deletions Scripts/DCS-BIOS/lib/modules/aircraft_modules/L-39.lua
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ L_39:defineIndicatorLight("BACK_AIRBRAKE_LAMP", 436, "Warning, Caution and Indic
L_39:defineIndicatorLight("FRONT_FLAPS_UP_LAMP", 278, "Warning, Caution and IndicatorLights", "Front Flaps 0° Lamp (green)")
L_39:defineIndicatorLight("FRONT_FLAPS_TO_LAMP", 279, "Warning, Caution and IndicatorLights", "Front Flaps 25° Lamp (green)")
L_39:defineIndicatorLight("FRONT_FLAPS_DN_LAMP", 280, "Warning, Caution and IndicatorLights", "Front Flaps 44° Lamp (green)")
L_39:defineIndicatorLight("BACK_FLAPS_UP_LAMP", 462, "Warning, Caution and IndicatorLights", "Front Flaps 0° Lamp (green)")
L_39:defineIndicatorLight("BACK_FLAPS_TO_LAMP", 463, "Warning, Caution and IndicatorLights", "Front Flaps 25° Lamp (green)")
L_39:defineIndicatorLight("BACK_FLAPS_DN_LAMP", 464, "Warning, Caution and IndicatorLights", "Front Flaps 44° Lamp (green)")
L_39:defineIndicatorLight("BACK_FLAPS_UP_LAMP", 462, "Warning, Caution and IndicatorLights", "Back Flaps 0° Lamp (green)")
L_39:defineIndicatorLight("BACK_FLAPS_TO_LAMP", 463, "Warning, Caution and IndicatorLights", "Back Flaps 25° Lamp (green)")
L_39:defineIndicatorLight("BACK_FLAPS_DN_LAMP", 464, "Warning, Caution and IndicatorLights", "Back Flaps 44° Lamp (green)")

L_39:defineIndicatorLight("FRONT_RKL41_FAR_NDB_SEL_LAMP", 561, "Warning, Caution and IndicatorLights", "Front RKL-41 Far NDB Selector Lamp (white)")
L_39:defineIndicatorLight("FRONT_RKL41_NEAR_NDB_SEL_LAMP", 570, "Warning, Caution and IndicatorLights", "Front RKL-41 Near NDB Selector Lamp (white)")
Expand Down
Loading