mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
SilentSkimmer and PyreHound bug fixes
This commit is contained in:
parent
b0c0ca351c
commit
57a992649e
4 changed files with 6 additions and 4 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue