added comments

This commit is contained in:
Chr1Z93 2024-08-01 22:17:59 +02:00
parent 893bd05801
commit 42cda036a0

View File

@ -189,11 +189,14 @@ function standaloneChanged()
self.editButton({ index = 2, label = STANDALONE_TOGGLE_LABELS[standalone] })
end
-- start the deck importing process
function loadDecks()
co = coroutine.create(loadDecksCoroutine)
resumeLoadDecks()
end
-- perform the deck importing (with a pause after each deck load)
-- this pause will for example allow weaknesses to be spawned so that the RBW drawing can detect them
function loadDecksCoroutine()
if not allCardsBagApi.isIndexReady() then return end
matsWithInvestigator = playermatApi.getUsedMatColors()
@ -207,8 +210,8 @@ function loadDecksCoroutine()
end
end
-- resume the deck importing process
function resumeLoadDecks()
log("resume")
if co and coroutine.status(co) ~= "dead" then
local status, err = coroutine.resume(co)
if not status then error(err) end