Nonfunctional virtual component support

This commit is contained in:
TheWahlolly
2025-06-14 18:31:09 +03:00
parent 21472ba797
commit f425e0d690
3 changed files with 81 additions and 12 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ local conversionTables = {
}
}
function table.find(table, item)
for k, v in pairs(table) do
function table.find(tab, item)
for k, v in pairs(tab) do
if v == item then
return k
end