Skip to content

Commit

Permalink
Merge pull request #1 from r-o-b-o-t-o/patch-1
Browse files Browse the repository at this point in the history
fix tA_returnIndex
  • Loading branch information
55Honey authored Oct 3, 2021
2 parents 3e02226 + 7f8bee7 commit 4fbe5cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TempAnnouncements.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ local function tA_splitString(inputstr, seperator)
end

local function tA_returnIndex (tab, val)
for index, value in ipairs(tab) do
for index, value in pairs(tab) do
if value == val then
return index
end
Expand Down

0 comments on commit 4fbe5cd

Please sign in to comment.