Skip to content

Commit

Permalink
Fix Sylveon FLI Wink Wink selection
Browse files Browse the repository at this point in the history
  • Loading branch information
axpendix committed Dec 3, 2020
1 parent 30cb80a commit a681d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tcgwars/logic/impl/gen7/ForbiddenLight.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,7 @@ public enum ForbiddenLight implements LogicCardInfo {
if (opp.hand) {
def randomOppHand = opp.hand.shuffledCopy()
if(randomOppHand.hasType(SUPPORTER)){
def support = randomOppHand.select(max: 0, "Your opponent's hand. You may discard a Supporter card you find there and use the effect of that card as the effect of this attack.", cardTypeFilter(SUPPORTER))
def support = randomOppHand.select(min: 0, "Your opponent's hand. You may discard a Supporter card you find there and use the effect of that card as the effect of this attack.", cardTypeFilter(SUPPORTER))
if (support){
discard support.first()
bg.deterministicCurrentThreadPlayerType=self.owner
Expand Down

0 comments on commit a681d17

Please sign in to comment.