Made varaible anonymous.

This commit is contained in:
Adam Harrison 2021-11-14 15:40:23 -05:00 committed by Guldoman
parent 20f0c5ba1e
commit c8b2b8c205
No known key found for this signature in database
GPG Key ID: C08A498EC7F1AFDD
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ function core.load_plugins()
end
table.sort(ordered)
for i, filename in ipairs(ordered) do
for _, filename in ipairs(ordered) do
local plugin_dir, basename = files[filename], filename:match("(.-)%.lua$") or filename
local is_lua_file, version_match = check_plugin_version(plugin_dir .. '/' .. filename)
if is_lua_file then