Unwanted mass rename of tinsert to table.insert

This commit is contained in:
Tercio Jose
2023-10-11 20:32:32 -03:00
parent 115ccf7d49
commit 0cca378d2b
32 changed files with 180 additions and 180 deletions
+2 -2
View File
@@ -30,7 +30,7 @@
desc = ""
end
tinsert(_detalhes.row_animation_pool, {name = name, desc = desc, func = func, options = options})
table.insert(_detalhes.row_animation_pool, {name = name, desc = desc, func = func, options = options})
return true
end
@@ -48,7 +48,7 @@
function _detalhes:GetRowAnimationList()
local t = {}
for key, value in ipairs(_detalhes.row_animation_pool) do
tinsert(t, value.name)
table.insert(t, value.name)
end
return t
end