forked from External/mage
Merge pull request #5360 from rscoates/patch-2
Update EtrataTheSilencer.java
This commit is contained in:
commit
c097ec053f
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ class EtrataTheSilencerEffect extends OneShotEffect {
|
|||
}
|
||||
int cardsFound = 0;
|
||||
for (Card exiledCard : game.getExile().getAllCards(game)) {
|
||||
if (exiledCard.getCounters(game).getCount(CounterType.HIT) > 1 && exiledCard.getOwnerId().equals(player.getId())) {
|
||||
if (exiledCard.getCounters(game).getCount(CounterType.HIT) >= 1 && exiledCard.getOwnerId().equals(player.getId())) {
|
||||
cardsFound++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue