rwy info isn't always available
This commit is contained in:
parent
321fbbbcab
commit
b7ddc05287
1 changed files with 2 additions and 0 deletions
|
@ -194,6 +194,8 @@ _setlistener("/sim/signals/nasal-dir-initialized", func {
|
||||||
settimer(func {
|
settimer(func {
|
||||||
setlistener("/sim/atc/runway", func {
|
setlistener("/sim/atc/runway", func {
|
||||||
var rwy = cmdarg().getValue();
|
var rwy = cmdarg().getValue();
|
||||||
|
if (rwy == nil)
|
||||||
|
return;
|
||||||
if (!(getprop("/sim/presets/airport-id") == "KSFO" and rwy == "28R"))
|
if (!(getprop("/sim/presets/airport-id") == "KSFO" and rwy == "28R"))
|
||||||
setprop("/sim/messages/atc", "You are on runway " ~ rwy ~ ".");
|
setprop("/sim/messages/atc", "You are on runway " ~ rwy ~ ".");
|
||||||
}, 1);
|
}, 1);
|
||||||
|
|
Loading…
Reference in a new issue