mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Bonder's Ornament only drawing cards for the controller
This commit is contained in:
parent
02eaf69801
commit
c861ef1b3b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue