This commit is contained in:
jeffwadsworth 2020-12-31 14:21:37 -06:00
parent f90ad78b26
commit 9f3ac5b5bb
2 changed files with 4 additions and 4 deletions

View file

@ -113,7 +113,7 @@ class HaldanAvidArcanistSpendAnyManaEffect extends AsThoughEffectImpl implements
@Override
public boolean applies(UUID objectId, Ability source, UUID affectedControllerId, Game game) {
return HaldanAvidArcanist.checkCard(objectId, source, affectedControllerId, game);
return true;
}
@Override

View file

@ -64,8 +64,8 @@ class PakoArcaneRetrieverEffect extends OneShotEffect {
PakoArcaneRetrieverEffect() {
super(Outcome.Benefit);
staticText = "exile the top card of each player's library and put a fetch counter on each of them. " +
"Put a +1/+1 counter on {this} for each noncreature card exiled this way.";
staticText = "exile the top card of each player's library and put a fetch counter on each of them. "
+ "Put a +1/+1 counter on {this} for each noncreature card exiled this way.";
}
private PakoArcaneRetrieverEffect(final PakoArcaneRetrieverEffect effect) {
@ -129,7 +129,7 @@ class PakoArcaneRetrieverWatcher extends Watcher {
boolean checkCard(UUID playerId, Card card, Game game) {
return card != null && playerMap
.computeIfAbsent(playerId, u -> new HashSet<MageObjectReference>())
.computeIfAbsent(playerId, u -> new HashSet<>())
.stream()
.anyMatch(mageObjectReference -> mageObjectReference.refersTo(card.getId(), game));
}