From 52905875f914898be0e6ec8cd61aff1f660988e4 Mon Sep 17 00:00:00 2001 From: jmt Date: Sun, 20 Dec 2009 18:20:07 +0000 Subject: [PATCH] Fix airportinfo() ILS frequency listing to use underscores. --- src/Scripting/NasalSys.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Scripting/NasalSys.cxx b/src/Scripting/NasalSys.cxx index fcde853a8..3b1d99529 100644 --- a/src/Scripting/NasalSys.cxx +++ b/src/Scripting/NasalSys.cxx @@ -596,7 +596,7 @@ static naRef f_airportinfo(naContext c, naRef me, int argc, naRef* args) HASHSET("stopway", 7, naNum(rwy->stopwayM())); if (rwy->ILS()) { - HASHSET("ils-frequency-mhz", 17, naNum(rwy->ILS()->get_freq() / 100.0)); + HASHSET("ils_frequency_mhz", 17, naNum(rwy->ILS()->get_freq() / 100.0)); } #undef HASHSET