fix [OTJ] Annie Joins Up missing creature check in second trigger (#12199)

This commit is contained in:
Daniel Cowman 2024-04-30 06:04:08 -04:00 committed by GitHub
parent 95adcf0e9a
commit fd874e85f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -85,7 +85,8 @@ class AnnieJoinsUpEffect extends ReplacementEffectImpl {
Permanent permanent = game.getPermanent(((NumberOfTriggersEvent) event).getSourceId());
return permanent != null
&& permanent.isControlledBy(source.getControllerId())
&& permanent.isLegendary(game);
&& permanent.isLegendary(game)
&& permanent.isCreature(game);
}
@Override