[MKM] Implement Case of the Gorgon's Kiss (#11720)

* [MKM] Implement Case of the Gorgon's Kiss

---------

Co-authored-by: Matthew Wilson <matthew_w@vaadin.com>
This commit is contained in:
Matthew Wilson 2024-01-30 08:53:20 +02:00 committed by GitHub
parent e344edcba8
commit 99fa058742
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 192 additions and 1 deletions

View file

@ -49,7 +49,7 @@ public class CardsPutIntoGraveyardWatcher extends Watcher {
if (((ZoneChangeEvent) event).getFromZone() == Zone.BATTLEFIELD) {
cardsPutIntoGraveyardFromBattlefield.add(new MageObjectReference(((ZoneChangeEvent) event).getTarget(), game, 1));
} else {
cardsPutIntoGraveyardFromEverywhereElse.add(new MageObjectReference(((ZoneChangeEvent) event).getTarget(), game, 1));
cardsPutIntoGraveyardFromEverywhereElse.add(new MageObjectReference(game.getCard(event.getTargetId()), game, 0));
}
}