SilentSkimmer and PyreHound bug fixes

This commit is contained in:
drmDev 2016-04-11 11:41:55 -04:00
parent b0c0ca351c
commit 57a992649e
4 changed files with 6 additions and 4 deletions

View file

@ -41,8 +41,8 @@ import mage.players.Player;
*/
public class LoseLifeDefendingPlayerEffect extends OneShotEffect {
protected DynamicValue amount;
protected boolean attackerIsSource;
private DynamicValue amount;
private boolean attackerIsSource;
/**
*
@ -57,6 +57,7 @@ public class LoseLifeDefendingPlayerEffect extends OneShotEffect {
public LoseLifeDefendingPlayerEffect(DynamicValue amount, boolean attackerIsSource) {
super(Outcome.Damage);
this.amount = amount;
this.attackerIsSource = attackerIsSource;
}
public LoseLifeDefendingPlayerEffect(final LoseLifeDefendingPlayerEffect effect) {