[NCC] Fixed Bribe Taker looking only at creatures instead of all permanents

This commit is contained in:
Alex Vasile 2022-09-05 14:28:06 -04:00
parent 138fa46824
commit e92b8ce99a

View file

@ -81,7 +81,7 @@ class BribeTakerEffect extends OneShotEffect {
Set<String> counterTypes = game Set<String> counterTypes = game
.getBattlefield() .getBattlefield()
.getActivePermanents( .getActivePermanents(
StaticFilters.FILTER_CONTROLLED_CREATURE, StaticFilters.FILTER_CONTROLLED_PERMANENT,
source.getControllerId(), source, game source.getControllerId(), source, game
).stream() ).stream()
.map(p -> p.getCounters(game)) .map(p -> p.getCounters(game))