mirror of
https://github.com/correl/mage.git
synced 2024-12-24 03:00:14 +00:00
misc
This commit is contained in:
parent
78bcd1ab1d
commit
3e441c59e1
2 changed files with 4 additions and 1 deletions
|
@ -51,7 +51,7 @@ public class CopyTargetSpellEffect extends OneShotEffect<CopyTargetSpellEffect>
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Spell spell = game.getStack().getSpell(source.getFirstTarget());
|
||||
Spell spell = game.getStack().getSpell(targetPointer.getFirst(source));
|
||||
if (spell != null) {
|
||||
Spell copy = spell.copySpell();
|
||||
copy.setControllerId(source.getControllerId());
|
||||
|
|
|
@ -74,6 +74,7 @@ $fulltoshort{'Legions'} = 'LGN';
|
|||
$fulltoshort{'Lorwyn'} = 'LRW';
|
||||
$fulltoshort{'Magic 2010'} = 'M10';
|
||||
$fulltoshort{'Magic 2011'} = 'M11';
|
||||
$fulltoshort{'Magic 2012'} = 'M12';
|
||||
$fulltoshort{'Masters Edition II'} = 'ME2';
|
||||
$fulltoshort{'Masters Edition III'} = 'ME3';
|
||||
$fulltoshort{'Masters Edition IV'} = 'ME4';
|
||||
|
@ -144,6 +145,7 @@ $wizardstous{'P4'} = 'S00';
|
|||
$wizardstous{'OD'} = 'ODY';
|
||||
$wizardstous{'M10'} = 'M10';
|
||||
$wizardstous{'M11'} = 'M11';
|
||||
$wizardstous{'M12'} = 'M12';
|
||||
$wizardstous{'LRW'} = 'LRW';
|
||||
$wizardstous{'DD2'} = 'JVC';
|
||||
$wizardstous{'TSB'} = 'TSB';
|
||||
|
@ -225,6 +227,7 @@ $knownSets{'DST'} = 'darksteel';
|
|||
$knownSets{'EVE'} = 'eventide';
|
||||
$knownSets{'M10'} = 'magic2010';
|
||||
$knownSets{'M11'} = 'magic2011';
|
||||
$knownSets{'M12'} = 'magic2012';
|
||||
$knownSets{'HOP'} = 'planechase';
|
||||
$knownSets{'RAV'} = 'ravnika';
|
||||
$knownSets{'ROE'} = 'riseoftheeldrazi';
|
||||
|
|
Loading…
Reference in a new issue