mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Make order of parameters the same for methods player.damage and permanent.damage
This commit is contained in:
parent
f81af16fa4
commit
e5b2b39701
139 changed files with 162 additions and 162 deletions
|
|
@ -1337,7 +1337,7 @@ public class ComputerPlayer extends PlayerImpl implements Player {
|
|||
public void assignDamage(int damage, List<UUID> targets, String singleTargetName, UUID sourceId, Game game) {
|
||||
log.debug("assignDamage");
|
||||
//TODO: improve this
|
||||
game.getPermanent(targets.get(0)).damage(damage, sourceId, game, true, false);
|
||||
game.getPermanent(targets.get(0)).damage(damage, sourceId, game, false, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue