From d930b97da81d3ced7c256af7c105ba127e377341 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 4 Mar 2024 22:33:22 +0100 Subject: [PATCH] removed log statements --- src/playercards/AllCardsBag.ttslua | 4 ---- 1 file changed, 4 deletions(-) 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