From 726fc9068f28a10d818e5dc68cbff33f17e689c9 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Sat, 11 Nov 2023 17:31:30 +0100 Subject: [PATCH] limit flipping to norman only --- src/playermat/Playmat.ttslua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/playermat/Playmat.ttslua b/src/playermat/Playmat.ttslua index 59beb477..655715d4 100644 --- a/src/playermat/Playmat.ttslua +++ b/src/playermat/Playmat.ttslua @@ -457,14 +457,20 @@ function drawCardsWithReshuffle(numCards) if deckSize >= numCards then drawCards(numCards) - if topCardDetected then flipTopCardFromDeck() end + -- flip top card again for Norman + if topCardDetected and string.match(activeInvestigatorId, "%d%d%d%d%d") == "08004" then + flipTopCardFromDeck() + end else drawCards(deckSize) if deckAreaObjects.discard ~= nil then shuffleDiscardIntoDeck() Wait.time(function() drawCards(numCards - deckSize) - if topCardDetected then flipTopCardFromDeck() end + -- flip top card again for Norman + if topCardDetected and string.match(activeInvestigatorId, "%d%d%d%d%d") == "08004" then + flipTopCardFromDeck() + end end, 1) end printToColor("Take 1 horror (drawing card from empty deck)", messageColor)