fixed Bonder's Ornament only drawing cards for the controller

This commit is contained in:
Evan Kranzler 2020-04-29 20:14:52 -04:00
parent 02eaf69801
commit c861ef1b3b

View file

@ -62,7 +62,7 @@ class BondersOrnamentEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
Player player = game.getPlayer(source.getControllerId());
Player player = game.getPlayer(playerId);
if (player == null) {
continue;
}