diff --git a/src/playercards/AllCardsBag.ttslua b/src/playercards/AllCardsBag.ttslua index 346e228c..8c12d906 100644 --- a/src/playercards/AllCardsBag.ttslua +++ b/src/playercards/AllCardsBag.ttslua @@ -62,7 +62,6 @@ end -- coroutine which will spread the workload by processing 20 cards before -- yielding. function buildIndex() - local start = os.time() local cardCount = 0 indexingDone = false @@ -79,7 +78,6 @@ function buildIndex() end end end - log(os.time() - start) -- process hotfix bags (and the additional playercards bag) for _, hotfixBag in ipairs(getObjectsWithTag("AllCardsHotfix")) do @@ -114,10 +112,8 @@ function buildIndex() end end end - log(os.time() - start) buildSupplementalIndexes() indexingDone = true - log(os.time() - start) return 1 end