Merge remote-tracking branch 'remotes/upstream/master'

This commit is contained in:
ciaccona007 2017-07-19 01:43:01 -04:00
commit 6af45f9cff
631 changed files with 1666 additions and 1264 deletions

View file

@ -38,10 +38,10 @@ import mage.game.permanent.Permanent;
* @author nantuko
*/
public class AddCardSubtypeAttachedEffect extends ContinuousEffectImpl {
private String addedSubtype;
private SubType addedSubtype;
private AttachmentType attachmentType;
public AddCardSubtypeAttachedEffect(String addedSubtype, Duration duration, AttachmentType attachmentType) {
public AddCardSubtypeAttachedEffect(SubType addedSubtype, Duration duration, AttachmentType attachmentType) {
super(duration, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.Benefit);
this.addedSubtype = addedSubtype;
this.attachmentType = attachmentType;