mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
Fix missing parameter in after Odric Master Tactician commit
This commit is contained in:
parent
ea5d1f2cd0
commit
ccc0bf4b6d
1 changed files with 1 additions and 1 deletions
|
@ -850,7 +850,7 @@ public class ComputerPlayer6 extends ComputerPlayer<ComputerPlayer6> implements
|
|||
List<Permanent> blockers = entry.getValue();
|
||||
if (blockers != null) {
|
||||
for (Permanent blocker : blockers) {
|
||||
player.declareBlocker(blocker.getId(), attackerId, game);
|
||||
player.declareBlocker(player.getId(), blocker.getId(), attackerId, game);
|
||||
blocked = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue