@@ -80,9 +80,13 @@ end
function table.contains(table, element)
for _, value in pairs(table) do
if value == element then
return true
end
return false
function clamp(a, b, c)
return math.min(a, math.max(b, c))
The note is not visible to the blocked user.