mirror of
https://github.com/magefree/mage.git
synced 2026-01-22 19:29:59 -08:00
[NCC] Fixed Bribe Taker looking only at creatures instead of all permanents
This commit is contained in:
parent
138fa46824
commit
e92b8ce99a
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue