Fix problem with the A320 family not starting up correctly.
This commit is contained in:
parent
7922658b22
commit
558c321f94
1 changed files with 1 additions and 1 deletions
|
@ -846,7 +846,7 @@ var tyresmoke = {
|
|||
},
|
||||
update: func {
|
||||
var rollspeed = me.get_rollspeed();
|
||||
var vert_speed = (me.vertical_speed) ? me.vertical_speed.getValue() : -999;
|
||||
var vert_speed = (me.vertical_speed) != nil ? me.vertical_speed.getValue() : -999;
|
||||
var groundspeed = me.speed.getValue();
|
||||
var friction_factor = me.friction_factor.getValue();
|
||||
var wow = me.wow.getValue();
|
||||
|
|
Loading…
Add table
Reference in a new issue