From e3e6b86e5418644c0bbec777293500d2befffe30 Mon Sep 17 00:00:00 2001 From: Susucre <34709007+Susucre@users.noreply.github.com> Date: Fri, 5 Apr 2024 11:56:33 +0200 Subject: [PATCH] Fix Locus of Enlightment missing fromExistingObject: true in copy ability --- Mage.Sets/src/mage/cards/l/LocusOfEnlightenment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/l/LocusOfEnlightenment.java b/Mage.Sets/src/mage/cards/l/LocusOfEnlightenment.java index 98e5d355381..46ae8a997a2 100644 --- a/Mage.Sets/src/mage/cards/l/LocusOfEnlightenment.java +++ b/Mage.Sets/src/mage/cards/l/LocusOfEnlightenment.java @@ -85,7 +85,7 @@ class LocusOfEnlightenmentEffect extends ContinuousEffectImpl { if (ability.getAbilityType() == AbilityType.ACTIVATED || ability.getAbilityType() == AbilityType.MANA) { ActivatedAbility copyAbility = (ActivatedAbility) ability.copy(); copyAbility.setMaxActivationsPerTurn(1); - permanent.addAbility(copyAbility, source.getSourceId(), game); + permanent.addAbility(copyAbility, source.getSourceId(), game, true); } } }