Fix timer usage
- didn't need to be a maketimer as it is a single shot usage.
This commit is contained in:
parent
0200041d74
commit
07ac341b70
1 changed files with 5 additions and 10 deletions
|
@ -1,18 +1,13 @@
|
|||
seaportLoop = func {
|
||||
_setlistener("/sim/signals/nasal-dir-initialized", func {
|
||||
_setlistener("/sim/presets/latitude-deg", func {
|
||||
printlog("info", "*** NEW LOCATION ***");
|
||||
settimer(func {
|
||||
var typ = getprop("/sim/type");
|
||||
var lat = getprop("/position/latitude-deg");
|
||||
var lon = getprop("/position/longitude-deg");
|
||||
var g = geodinfo(lat, lon);
|
||||
if ((g != nil and g[1] != nil and g[1].solid) and (typ == "seaplane") )
|
||||
fgcommand("dialog-show", props.Node.new({ "dialog-name": "seaport" }));
|
||||
};
|
||||
seaportTimer = maketimer(8, seaportLoop);
|
||||
seaportTimer.simulatedTime = 1;
|
||||
|
||||
_setlistener("/sim/signals/nasal-dir-initialized", func {
|
||||
_setlistener("/sim/presets/latitude-deg", func {
|
||||
printlog("info", "*** NEW LOCATION ***");
|
||||
seaportTimer.restart(8);
|
||||
|
||||
}, 8);
|
||||
}, 1);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue