[WHO] Implement The Master, Multiplied (#11356)

This commit is contained in:
PurpleCrowbar 2023-10-29 21:42:02 +00:00 committed by GitHub
parent 7c27e0b999
commit 30b1ef5491
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 135 additions and 10 deletions

View file

@ -1931,7 +1931,9 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
}
boolean successfullyMoved = ZonesHandler.moveCard(zoneChangeInfo, game, source);
//20180810 - 701.3d
detachAllAttachments(game);
if (successfullyMoved) {
detachAllAttachments(game);
}
return successfullyMoved;
}
return false;
@ -1945,7 +1947,9 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
boolean successfullyMoved = ZonesHandler.moveCard(zcInfo, game, source);
//20180810 - 701.3d
detachAllAttachments(game);
if (successfullyMoved) {
detachAllAttachments(game);
}
return successfullyMoved;
}
}