Update cl_utils.lua

This commit is contained in:
Dan
2019-12-04 12:23:29 +00:00
parent 3784f023a2
commit 9966ed8fc1

View File

@@ -11,10 +11,6 @@ function UTIL:Round( num, numDecimalPlaces )
return tonumber( string.format( "%." .. ( numDecimalPlaces or 0 ) .. "f", num ) )
end
-- function UTIL:FormatSpeed( speed )
-- return string.format( "%03d", speed )
-- end
function UTIL:FormatSpeed( speed )
if ( speed < 0 or speed > 999 ) then return "Err" end