* Leyline of Combustion - fixed that it triggers on controller targets;

This commit is contained in:
Oleg Agafonov 2019-07-05 13:31:05 +04:00
parent d80295058c
commit b0e2536243

View file

@ -64,7 +64,7 @@ class LeylineOfCombustionTriggeredAbility extends TriggeredAbilityImpl {
@Override
public boolean checkTrigger(GameEvent event, Game game) {
StackObject sourceObject = game.getStack().getStackObject(event.getSourceId());
if (sourceObject == null) {
if (sourceObject == null || this.controllerId.equals(sourceObject.getControllerId())) {
return false;
}
if (sourceObject