Merge pull request #10102 from Grath/master

[TMP] Fix Dracoplasm replacing its Enters the Battlefield effect entirely
This commit is contained in:
Grath 2023-03-28 15:11:40 -04:00 committed by GitHub
commit d51abc9b8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,6 +119,6 @@ class DracoplasmEffect extends ReplacementEffectImpl {
}
ContinuousEffect effect = new SetBasePowerToughnessSourceEffect(power, toughness, Duration.Custom, SubLayer.SetPT_7b);
game.addEffect(effect, source);
return true;
return false;
}
}