Revert "Nonfunctional virtual component support"

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