fixed Ormos, Archive Keeper not adding counters (#6677)

This commit is contained in:
Evan Kranzler 2020-06-22 22:36:37 -04:00
parent 23fea94263
commit 1224f0621f

View file

@ -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;