mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix VanishingUpkeepAbility missing a copy for a field (#10755)
This commit is contained in:
parent
7c4f3f8c8d
commit
b9a2278d4f
1 changed files with 2 additions and 1 deletions
|
|
@ -27,9 +27,10 @@ public class VanishingUpkeepAbility extends BeginningOfUpkeepTriggeredAbility {
|
|||
this.permanentType = permanentType;
|
||||
}
|
||||
|
||||
public VanishingUpkeepAbility(final VanishingUpkeepAbility ability) {
|
||||
protected VanishingUpkeepAbility(final VanishingUpkeepAbility ability) {
|
||||
super(ability);
|
||||
this.vanishingAmount = ability.vanishingAmount;
|
||||
this.permanentType = ability.permanentType;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue