Changeling - improved combo support for creature type triggers and changeling spells (example: Volo, Itinerant Scholar) (#11569)

This commit is contained in:
xenohedron 2023-12-23 07:42:05 -05:00 committed by GitHub
parent 3bc9999207
commit 1737a0a9eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View file

@ -1129,15 +1129,17 @@ public class Spell extends StackObjectImpl implements Card {
@Override
public boolean isAllCreatureTypes(Game game) {
return false;
return card.isAllCreatureTypes(game);
}
@Override
public void setIsAllCreatureTypes(boolean value) {
card.setIsAllCreatureTypes(value);
}
@Override
public void setIsAllCreatureTypes(Game game, boolean value) {
card.setIsAllCreatureTypes(game, value);
}
@Override