mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
* Leyline of Combustion - fixed that it triggers on controller targets;
This commit is contained in:
parent
d80295058c
commit
b0e2536243
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue