Removed message

This commit is contained in:
FlightControl
2016-07-08 17:20:57 +02:00
parent 6a82b223f6
commit 11aef957b6
3 changed files with 5 additions and 5 deletions

View File

@@ -160,7 +160,7 @@ function AIRBASEPOLICE_BASE:_AirbaseMonitor()
local VelocityVec3 = Client:GetVelocity()
local Velocity = ( VelocityVec3.x ^ 2 + VelocityVec3.y ^ 2 + VelocityVec3.z ^ 2 ) ^ 0.5 -- in meters / sec
local Velocity = Velocity * 3.6 -- now it is in km/h.
MESSAGE:New( "Velocity = " .. Velocity, 1 ):ToAll()
-- MESSAGE:New( "Velocity = " .. Velocity, 1 ):ToAll()
local IsAboveRunway = Client:IsAboveRunway()
local IsOnGround = Client:InAir() == false
self:T( IsAboveRunway, IsOnGround )