This commit is contained in:
FlightControl
2017-05-20 22:04:44 +02:00
parent 923ea597ec
commit 2b0fcd3426
5 changed files with 40 additions and 14 deletions

View File

@@ -161,13 +161,13 @@ do -- ACT_ROUTE
local RouteText = ""
if self.Coordinate then
RouteText = "Route to " .. self.Coordinate:ToString( Controllable )
RouteText = self.Coordinate:ToString( Controllable )
end
if self.Zone then
local Coordinate = self.Zone:GetPointVec3( self.Altitude )
Coordinate:SetHeading( self.Heading )
RouteText = "Route to zone " .. Coordinate:ToString( Controllable )
RouteText = Coordinate:ToString( Controllable )
end
return RouteText