Update cl_radar.lua

This commit is contained in:
Dan
2019-11-11 10:50:06 +00:00
parent a5a611cda1
commit 1f587ca4f3

View File

@@ -129,18 +129,6 @@ RADAR.sorting = {
[3] = { [3] = {
name = "LARGEST", name = "LARGEST",
func = function( a, b ) return a.size > b.size + 1.0 end func = function( a, b ) return a.size > b.size + 1.0 end
},
[4] = {
name = "LARGEST & FASTEST",
func = function( a, b )
if ( a.size > b.size + 2.0 ) then
return true
elseif ( a.size - b.size <= 1.0 ) then
return false
end
return a.speed > b.speed
end
} }
} }