mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00: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…
Reference in a new issue