Allows us to check if this vehicle is a trailer or not.
Used in: VCMod Main addon.
Shared Entity Vehicle:VC_isTrailer()
1. Boolean Is this a trailer or not.
// Do not allow damage to trailers
hook.Add("EntityTakeDamage", "VC_noDamageToTrailers", function(target, dmginfo)
if target:VC_isTrailer() then
return true
end
end)