Remove pairs() and ipairs() (#1150)

This commit is contained in:
quaywinn
2025-11-18 21:49:52 -05:00
committed by GitHub
parent ea70d89291
commit 31ec216a95
13 changed files with 17 additions and 17 deletions

View File

@@ -74,7 +74,7 @@ local Assets = {
local function guardForTypos(name, map)
strict(name, map)
for key, child in pairs(map) do
for key, child in map do
if type(child) == "table" then
guardForTypos(("%s.%s"):format(name, key), child)
end