[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
.getBattlefield()
.getActivePermanents(
StaticFilters.FILTER_CONTROLLED_CREATURE,
StaticFilters.FILTER_CONTROLLED_PERMANENT,
source.getControllerId(), source, game
).stream()
.map(p -> p.getCounters(game))