mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Ormos, Archive Keeper not adding counters (#6677)
This commit is contained in:
parent
23fea94263
commit
1224f0621f
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class OrmosArchiveKeeperEffect extends ReplacementEffectImpl {
|
|||
@Override
|
||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
if (permanent == null) {
|
||||
if (permanent != null) {
|
||||
permanent.addCounters(CounterType.P1P1.createInstance(5), source, game);
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue