Fixed starterdeck spawning

This commit is contained in:
Chr1Z93 2024-08-01 23:52:37 +02:00
parent 439548f139
commit 538a5d4baa

View File

@ -603,9 +603,14 @@ function spawnStarterDeck(investigatorName, investigatorData, position)
local cardIdList = {}
for id, count in pairs(slots) do
for i = 1, count do
table.insert(cardIdList, id)
-- don't include mini-cards and investigators
local card = allCardsBagApi.getCardById(id)
if card and card.metadata and card.metadata.type ~= "Investigator" and card.metadata.type ~= "Minicard" then
table.insert(cardIdList, id)
end
end
end
spawnBag.spawn({
name = investigatorName .. "starter",
cards = cardIdList,