From 9a72597fa57ef3f995550e9cc59e3e09bf165cb6 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Thu, 22 Dec 2022 14:40:27 +0100 Subject: [PATCH] account for taboo versions of bonded cards --- src/arkhamdb/ArkhamDb.ttslua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/arkhamdb/ArkhamDb.ttslua b/src/arkhamdb/ArkhamDb.ttslua index e5761d9a..63ed2ffe 100644 --- a/src/arkhamdb/ArkhamDb.ttslua +++ b/src/arkhamdb/ArkhamDb.ttslua @@ -271,6 +271,8 @@ do bondedCards[bond.id] = bond.count -- We need to know which cards are bonded to determine their position, remember them bondedList[bond.id] = true + -- Also adding taboo versions of bonded cards to the list + bondedList[bond.id .. "-t"] = true end end end