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
@@ -62,7 +62,7 @@ function Details222.CooldownTracking.GetOrCreateNewCooldownLine(cooldownFrame, l
return cooldownLine
else
cooldownLine = DF:CreateTimeBar(cooldownFrame, [[Interface\AddOns\Details\images\bar_serenity]], Details.ocd_tracker.width-2, Details.ocd_tracker.height-2, 100, nil, cooldownFrame:GetName() .. "CDFrame" .. lineId)
tinsert(cooldownFrame.bars, cooldownLine)
table.insert(cooldownFrame.bars, cooldownLine)
cooldownLine:EnableMouse(false)
return cooldownLine
end
@@ -295,7 +295,7 @@ end
Details222.CooldownTracking.SetupCooldownLine(cooldownLine)
--add the cooldown into the organized by class table
tinsert(cooldownsOrganized[classId], cooldownLine)
table.insert(cooldownsOrganized[classId], cooldownLine)
--iterate to the next cooldown line
cooldownFrame.nextLineId = cooldownFrame.nextLineId + 1