Merge pull request #5360 from rscoates/patch-2

Update EtrataTheSilencer.java
This commit is contained in:
ingmargoudt 2018-10-03 10:44:23 +02:00 committed by GitHub
commit c097ec053f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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++;
}
}