mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed a bug of Primordial Hydra not triggering add counter event, if counters are doubled.
This commit is contained in:
parent
0a670ded4a
commit
3238c69cdf
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class PrimordialHydraDoubleEffect extends OneShotEffect<PrimordialHydraDoubleEff
|
|||
if (sourcePermanent != null) {
|
||||
int amount = sourcePermanent.getCounters().getCount(CounterType.P1P1);
|
||||
if (amount > 0) {
|
||||
sourcePermanent.getCounters().addCounter(CounterType.P1P1.createInstance(amount));
|
||||
sourcePermanent.addCounters(CounterType.P1P1.createInstance(amount), game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue