- Added dividedAsYouChoose to Target's copy constructor

This commit is contained in:
Sol
2013-03-24 22:40:54 +00:00
parent 1f2ba326d3
commit 9c81ed1207

View File

@@ -457,7 +457,6 @@ public class Target {
* a {@link forge.card.spellability.Target} object.
*/
public Target(final Target target) {
this.tgtValid = true;
this.srcCard = target.getSourceCard();
this.vtSelection = target.getVTSelection();
@@ -466,6 +465,7 @@ public class Target {
this.maxTargets = target.getMaxTargets();
this.tgtZone = target.getZone();
this.targetSpellAbilityType = target.getTargetSpellAbilityType();
this.dividedAsYouChoose = target.isDividedAsYouChoose();
}
/**