Files
2026-06-01 12:46:52 +02:00

13 lines
162 B
Lua

function is_in_table( mytable , value )
found = false
for i = 1 , table.getn(mytable) do
if mytable[i] == value then
found = true
end
end
return found
end