mirror of
https://github.com/correl/mage.git
synced 2025-03-16 09:16:26 -09: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
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
|
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
|
||||||
Player player = game.getPlayer(source.getControllerId());
|
Player player = game.getPlayer(playerId);
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue