diff --git a/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/model/A320_NEO.xml b/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/model/A320_NEO.xml index 37c7ca619763..36c28b6841d6 100644 --- a/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/model/A320_NEO.xml +++ b/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/model/A320_NEO.xml @@ -530,7 +530,7 @@ 10 (A:SURFACE RELATIVE GROUND SPEED, feet per second) 0.1 > ! (>L:A32NX_IS_STATIONARY, bool) - (A:SIM ON GROUND, bool) (L:A32NX_ENGINE_N1:1, Number) 3.5 < and (L:A32NX_ENGINE_N1:2, Number) 3.5 < and (L:A32NX_HYD_NW_STRG_DISC_ECAM_MEMO, bool) 0 == and (A:LIGHT BEACON ON, bool) 0 == and (>L:A32NX_GND_EQP_IS_VISIBLE, bool) + (A:SIM ON GROUND, bool) (L:A32NX_ENGINE_N1:1, Number) 3.5 < and (L:A32NX_ENGINE_N1:2, Number) 3.5 < and (L:A32NX_HYD_NW_STRG_DISC_ECAM_MEMO, bool) 0 == and (A:LIGHT BEACON, bool) 0 == and (>L:A32NX_GND_EQP_IS_VISIBLE, bool) diff --git a/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/sound/sound.xml b/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/sound/sound.xml index 815094c56237..4e33204abf24 100644 --- a/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/sound/sound.xml +++ b/flybywire-aircraft-a320-neo/SimObjects/AirPlanes/FlyByWire_A320_NEO/sound/sound.xml @@ -2263,14 +2263,14 @@ - + - + @@ -2279,7 +2279,7 @@ - + diff --git a/src/behavior/src/A32NX_Exterior.xml b/src/behavior/src/A32NX_Exterior.xml index 2529ef9eb159..99639dc4dc77 100644 --- a/src/behavior/src/A32NX_Exterior.xml +++ b/src/behavior/src/A32NX_Exterior.xml @@ -211,7 +211,7 @@ - (A:SIM ON GROUND, bool) (L:A32NX_ENGINE_N1:1, Number) 3.5 < and (L:A32NX_ENGINE_N1:2, Number) 3.5 < and (L:A32NX_HYD_NW_STRG_DISC_ECAM_MEMO, bool) 0 == and (A:LIGHT BEACON ON, bool) 0 == and + (A:SIM ON GROUND, bool) (L:A32NX_ENGINE_N1:1, Number) 3.5 < and (L:A32NX_ENGINE_N1:2, Number) 3.5 < and (L:A32NX_HYD_NW_STRG_DISC_ECAM_MEMO, bool) 0 == and (A:LIGHT BEACON, bool) 0 == and diff --git a/src/behavior/src/A32NX_Interior_Handling.xml b/src/behavior/src/A32NX_Interior_Handling.xml index 004d54bf8eaa..72d809719064 100644 --- a/src/behavior/src/A32NX_Interior_Handling.xml +++ b/src/behavior/src/A32NX_Interior_Handling.xml @@ -104,7 +104,7 @@ 30 O Position - 16383 10 / + 16383 10 / TT:COCKPIT.TOOLTIPS.SPEEDBRAKE_LEVER diff --git a/src/systems/a320_systems/src/hydraulic/mod.rs b/src/systems/a320_systems/src/hydraulic/mod.rs index 3d5f992824a5..536ca9816f1e 100644 --- a/src/systems/a320_systems/src/hydraulic/mod.rs +++ b/src/systems/a320_systems/src/hydraulic/mod.rs @@ -3847,7 +3847,7 @@ impl A320BrakingForce { .get_identifier("RIGHT_FLAPS_POSITION_PERCENT".to_owned()), enabled_chocks_id: context.get_identifier("MODEL_WHEELCHOCKS_ENABLED".to_owned()), - light_beacon_on_id: context.get_identifier("LIGHT BEACON ON".to_owned()), + light_beacon_on_id: context.get_identifier("LIGHT BEACON".to_owned()), left_braking_force: 0., right_braking_force: 0., diff --git a/src/systems/a320_systems_wasm/src/lib.rs b/src/systems/a320_systems_wasm/src/lib.rs index bb07bf3430ec..296ee693ca84 100644 --- a/src/systems/a320_systems_wasm/src/lib.rs +++ b/src/systems/a320_systems_wasm/src/lib.rs @@ -207,6 +207,7 @@ async fn systems(mut gauge: msfs::Gauge) -> Result<(), Box> { .provides_aircraft_variable("INDICATED ALTITUDE", "Feet", 0)? .provides_aircraft_variable("INTERACTIVE POINT OPEN:0", "Percent", 0)? .provides_aircraft_variable("INTERACTIVE POINT OPEN:3", "Percent", 0)? + .provides_aircraft_variable("LIGHT BEACON", "Bool", 0)? .provides_aircraft_variable("LIGHT BEACON ON", "Bool", 0)? .provides_aircraft_variable("PLANE ALT ABOVE GROUND", "Feet", 0)? .provides_aircraft_variable("PLANE PITCH DEGREES", "Degrees", 0)? diff --git a/src/systems/a380_systems/src/hydraulic/mod.rs b/src/systems/a380_systems/src/hydraulic/mod.rs index 8e4318c97e83..5e61bb123f91 100644 --- a/src/systems/a380_systems/src/hydraulic/mod.rs +++ b/src/systems/a380_systems/src/hydraulic/mod.rs @@ -3906,7 +3906,7 @@ impl A380BrakingForce { .get_identifier("RIGHT_FLAPS_POSITION_PERCENT".to_owned()), enabled_chocks_id: context.get_identifier("MODEL_WHEELCHOCKS_ENABLED".to_owned()), - light_beacon_on_id: context.get_identifier("LIGHT BEACON ON".to_owned()), + light_beacon_on_id: context.get_identifier("LIGHT BEACON".to_owned()), left_braking_force: 0., right_braking_force: 0., diff --git a/src/systems/a380_systems_wasm/src/lib.rs b/src/systems/a380_systems_wasm/src/lib.rs index d3c735f2b87d..5e55253ac597 100644 --- a/src/systems/a380_systems_wasm/src/lib.rs +++ b/src/systems/a380_systems_wasm/src/lib.rs @@ -191,6 +191,7 @@ async fn systems(mut gauge: msfs::Gauge) -> Result<(), Box> { .provides_aircraft_variable("INDICATED ALTITUDE", "Feet", 0)? .provides_aircraft_variable("INTERACTIVE POINT OPEN:0", "Percent", 0)? .provides_aircraft_variable("INTERACTIVE POINT OPEN:3", "Percent", 0)? + .provides_aircraft_variable("LIGHT BEACON", "Bool", 0)? .provides_aircraft_variable("LIGHT BEACON ON", "Bool", 0)? .provides_aircraft_variable("PLANE ALT ABOVE GROUND", "Feet", 0)? .provides_aircraft_variable("PLANE PITCH DEGREES", "Degrees", 0)?