mirror of
https://bitbucket.org/Mattrixwv/luaclasses.git
synced 2025-12-06 18:33:59 -05:00
Fixed bug with ?
This commit is contained in:
@@ -333,3 +333,12 @@ function getPermutations(master, num)
|
|||||||
--Return the list
|
--Return the list
|
||||||
return perms;
|
return perms;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function isFound(ary, key)
|
||||||
|
for cnt = 1, #ary do
|
||||||
|
if(ary[ary] == key) then
|
||||||
|
return true;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return false;
|
||||||
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user