mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
[MIC] fix Ruinous Intrusion not adding counters
This commit is contained in:
parent
3fa6ef74e7
commit
9ba60eb97b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ class RuinousIntrusionEffect extends OneShotEffect {
|
|||
if (mv < 1) {
|
||||
return true;
|
||||
}
|
||||
Permanent creature = game.getPermanent(source.getTargets().get(0).getFirstTarget());
|
||||
Permanent creature = game.getPermanent(source.getTargets().get(1).getFirstTarget());
|
||||
if (creature != null) {
|
||||
creature.addCounters(CounterType.P1P1.createInstance(mv), source, game);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue