]> git.mxchange.org Git - flightgear.git/commitdiff
Vivian wants: s/with the ATIS/with ATIS/
authormfranz <mfranz>
Fri, 10 Feb 2006 21:26:36 +0000 (21:26 +0000)
committermfranz <mfranz>
Fri, 10 Feb 2006 21:26:36 +0000 (21:26 +0000)
src/ATC/AIGAVFRTraffic.cxx
src/ATC/tower.cxx

index c5df6d2402d4c9520d5a10b48c8b4ac9cc01b4fd..317bae6439f409c3d8d18b86114a9b28222b6c59 100644 (file)
@@ -179,7 +179,7 @@ void FGAIGAVFRTraffic::FlyPlane(double dt) {
                                }
                                //cout << "freq = " << freq << endl;
                                GetRwyDetails(airportID);
-                               //"@AP Tower @CS @MI miles @CD of the airport for full stop with the ATIS"
+                               //"@AP Tower @CS @MI miles @CD of the airport for full stop with ATIS"
                                // At the bare minimum we ought to make sure it goes the right way at dual parallel rwy airports!
                                if(rwy.rwyID.size() == 3) {
                                        patternDirection = (rwy.rwyID.substr(2,1) == "R" ? 1 : -1);
@@ -200,7 +200,7 @@ void FGAIGAVFRTraffic::FlyPlane(double dt) {
                                if(dist_miles > 1) pending_transmission += " miles ";
                                else pending_transmission += " mile ";
                                pending_transmission += GetCompassDirection(GetHeadingFromTo(_destPos, _pos));
-                               pending_transmission += " of the airport for full stop with the ATIS";
+                               pending_transmission += " of the airport for full stop with ATIS";
                                //cout << pending_transmission << endl;
                                Transmit(14);   // 14 is the callback code, NOT the timeout!
                                responseCounter = 0;
index e2c2e71ae77c1c0dca8bf0a08231e3eb0cd69ba2..d3a1113b85b36aca49c3b88d7ee1bf2a1e606403 100644 (file)
@@ -319,7 +319,7 @@ void FGTower::Init() {
                // TODO FIXME - this will break when user starts on apron, at hold short, etc.
                if(!OnAnyRunway(Point3D(user_lon_node->getDoubleValue(), user_lat_node->getDoubleValue(), 0.0))) {
                        //cout << ident << "  ADD 0\n";
-                       current_atcdialog->add_entry(ident, "@AP Tower @CS @MI miles @CD of the airport for full stop with the ATIS", "Contact tower for VFR arrival (full stop)", TOWER, (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP);
+                       current_atcdialog->add_entry(ident, "@AP Tower @CS @MI miles @CD of the airport for full stop with ATIS", "Contact tower for VFR arrival (full stop)", TOWER, (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP);
                }
        }
 }
@@ -1325,7 +1325,7 @@ void FGTower::CheckDepartureList(double dt) {
                                // Change the communication options
                                RemoveAllUserDialogOptions();
                                //cout << "ADD A\n";
-                               current_atcdialog->add_entry(ident, "@AP Tower @CS @MI miles @CD of the airport for full stop with the ATIS", "Contact tower for VFR arrival (full stop)", TOWER, (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP);
+                               current_atcdialog->add_entry(ident, "@AP Tower @CS @MI miles @CD of the airport for full stop with ATIS", "Contact tower for VFR arrival (full stop)", TOWER, (int)USER_REQUEST_VFR_ARRIVAL_FULL_STOP);
                        } else {
                                // Send a clear-of-airspace signal
                                // TODO - implement this once we actually have departing AI traffic (currently all circuits or arrivals).