Typo fix
This commit is contained in:
parent
93cf903128
commit
d83e2554d2
1 changed files with 2 additions and 2 deletions
|
@ -387,7 +387,7 @@ controls.stepSpoilers = func(step) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var deploySpeedbrake = func {
|
var deploySpeedbrake = func {
|
||||||
if (pts.Gear.Wow[1].getBoolValue() or pts.Gear.Wow[2].getBoolValue()) {
|
if (pts.Gear.wow[1].getBoolValue() or pts.Gear.wow[2].getBoolValue()) {
|
||||||
if (pts.Controls.Flight.speedbrake.getValue() < 1.0) {
|
if (pts.Controls.Flight.speedbrake.getValue() < 1.0) {
|
||||||
pts.Controls.Flight.speedbrake.setValue(1.0);
|
pts.Controls.Flight.speedbrake.setValue(1.0);
|
||||||
}
|
}
|
||||||
|
@ -401,7 +401,7 @@ var deploySpeedbrake = func {
|
||||||
}
|
}
|
||||||
|
|
||||||
var retractSpeedbrake = func {
|
var retractSpeedbrake = func {
|
||||||
if (pts.Gear.Wow[1].getBoolValue() or pts.Gear.Wow[2].getBoolValue()) {
|
if (pts.Gear.wow[1].getBoolValue() or pts.Gear.wow[2].getBoolValue()) {
|
||||||
if (pts.Controls.Flight.speedbrake.getValue() > 0.0) {
|
if (pts.Controls.Flight.speedbrake.getValue() > 0.0) {
|
||||||
pts.Controls.Flight.speedbrake.setValue(0.0);
|
pts.Controls.Flight.speedbrake.setValue(0.0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue