forked from External/mage
[CMR] Implemented Toggo, Goblin Weaponsmith
This commit is contained in:
parent
edca0c5089
commit
c994b82ce3
5 changed files with 88 additions and 2 deletions
|
|
@ -35,7 +35,9 @@ public class SacrificeAttachmentCost extends UseAttachedCost {
|
|||
continue;
|
||||
}
|
||||
Permanent attachment = game.getPermanent(attachmentId);
|
||||
paid = attachment != null && attachment.sacrifice(sourceId, game);
|
||||
paid = attachment != null
|
||||
&& attachment.isControlledBy(controllerId)
|
||||
&& attachment.sacrifice(sourceId, game);
|
||||
if (paid) {
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue