Indentation fix in funcs.lua

pull/16/head
Ishaan Bhardwaj 2021-03-04 19:05:43 -05:00
parent 37c85adc75
commit 846013ce7a
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ end
function clamp(x, min, max) function clamp(x, min, max)
if max < min then if max < min then
min, max = max, min min, max = max, min
end end
return x < min and min or (x > max and max or x) return x < min and min or (x > max and max or x)
end end