forked from External/mage
[CLB] Fix Ingenious Artillerist trigger for opponents. For #9258.
This commit is contained in:
parent
0d91243efe
commit
cfb0014885
1 changed files with 2 additions and 1 deletions
|
|
@ -63,7 +63,8 @@ class IngeniousArtilleristTriggeredAbility extends TriggeredAbilityImpl {
|
|||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
ZoneChangeGroupEvent zEvent = (ZoneChangeGroupEvent) event;
|
||||
if (zEvent.getToZone() != Zone.BATTLEFIELD) {
|
||||
if (zEvent.getToZone() != Zone.BATTLEFIELD
|
||||
|| !this.controllerId.equals(event.getPlayerId())) {
|
||||
return false;
|
||||
}
|
||||
int artifacts = Stream.concat(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue