forked from External/mage
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
|
|
@ -130,7 +130,7 @@ class ChandraPyromasterEffect1 extends OneShotEffect {
|
|||
}
|
||||
Permanent creature = game.getPermanent(source.getTargets().get(1).getFirstTarget());
|
||||
if (creature != null) {
|
||||
creature.damage(1, source.getSourceId(), game, true, false);
|
||||
creature.damage(1, source.getSourceId(), game, false, true);
|
||||
ContinuousEffect effect = new CantBlockTargetEffect(Duration.EndOfTurn);
|
||||
effect.setTargetPointer(new FixedTarget(creature.getId()));
|
||||
game.addEffect(effect, source);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue