mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-08 03:35:35 +08:00
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
(function() {
|
|
// inObject
|
|
// outObject
|
|
// modelSet, not available in reverse lookup
|
|
outObject.aircraftIcao = "C172";
|
|
outObject.modified = true;
|
|
outObject.rerun = true;
|
|
outObject.logMessage = "Changed to C172";
|
|
|
|
return outObject;
|
|
|
|
// string return is possible
|
|
// return "Changed ICAO to C172";
|
|
})
|