diff --git a/src/core/PlayArea.ttslua b/src/core/PlayArea.ttslua index 5b03de49..bf1c578c 100644 --- a/src/core/PlayArea.ttslua +++ b/src/core/PlayArea.ttslua @@ -145,6 +145,11 @@ function shouldSpawnTokens(card) or metadata.type == "Enemy" or metadata.type == "Treachery" or metadata.weakness + -- hardcoded IDs for "Makeshift Trap" and "Shrine of the Moirai" + -- these cards are events with uses, that attach to encounter cards and thus will enter play in the playarea + -- TODO: probably turn this into a metadata field if we get more cards like that + or metadata.id == "07310" + or metadata.id == "09100" end function onCollisionExit(collisionInfo) diff --git a/src/playermat/Playmat.ttslua b/src/playermat/Playmat.ttslua index f7da402f..59beb477 100644 --- a/src/playermat/Playmat.ttslua +++ b/src/playermat/Playmat.ttslua @@ -505,7 +505,6 @@ end -- utility function for Norman Withers to flip the top card to the revealed side function flipTopCardFromDeck() - log("called") Wait.time(function() local deckAreaObjects = getDeckAreaObjects() if deckAreaObjects.topCard then @@ -893,7 +892,7 @@ function clickableClues(showCounter) local clueCount = 0 -- move clue counters - local modY = showcounter and -0.525 or 0.525 + local modY = showCounter and 0.525 or -0.525 ownedObjects.ClickableClueCounter.setPosition(clickerPos + Vector(0, modY, 0)) if showCounter then