add correct vehicle types

This commit is contained in:
Luna 2023-12-11 01:04:12 +01:00
parent 10d3668742
commit d23edd4ffa
2 changed files with 8 additions and 0 deletions

View File

@ -32,3 +32,7 @@ ENT.MaxThrustVtol = 400
function ENT:IsGunship()
return true
end
function ENT:GetVehicleType()
return "gunship"
end

View File

@ -50,3 +50,7 @@ end
function ENT:IsHelicopter()
return true
end
function ENT:GetVehicleType()
return "helicopter"
end