Adjusted how DAS cut subtracts from the counter

This commit is contained in:
Ishaan Bhardwaj
2021-02-03 16:50:03 -05:00
parent 81677221f1
commit 5a074f77cf
2 changed files with 9 additions and 5 deletions

View File

@@ -80,9 +80,13 @@ end
function table.contains(table, element)
for _, value in pairs(table) do
if value == element then
return true
end
if value == element then
return true
end
end
return false
end
end
function clamp(a, b, c)
return math.min(a, math.max(b, c))
end