fix Valley Flamecaller logic (closes #13640)

This commit is contained in:
xenohedron 2025-05-22 00:02:47 -04:00
parent 901954088c
commit 4a779e7426

View file

@ -76,7 +76,7 @@ class ValleyFlamecallerEffect extends ReplacementEffectImpl {
public boolean applies(GameEvent event, Ability source, Game game) {
Permanent permanent = game.getPermanentOrLKIBattlefield(event.getSourceId());
return permanent != null
&& permanent.isControlledBy(permanent.getControllerId())
&& permanent.isControlledBy(source.getControllerId())
&& (permanent.hasSubtype(SubType.LIZARD, game)
|| permanent.hasSubtype(SubType.MOUSE, game)
|| permanent.hasSubtype(SubType.OTTER, game)