removed log statements

This commit is contained in:
Chr1Z93 2024-03-04 22:33:22 +01:00
parent faaa37884f
commit d930b97da8

View File

@ -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