Fix for Sanguine Praetor

Sanguine Praetor’s activated ability is only destroying creatures its
owner controls.  This fix changes it to target all creatures.  If my
interpretation of the card text is incorrect then feel free to close
this pull request.
This commit is contained in:
Pete Rossi 2016-11-20 11:10:02 -08:00
parent 2d43f4fa0e
commit 7eb8d167b3

View file

@ -98,7 +98,7 @@ class SanguinePraetorEffect extends OneShotEffect {
}
}
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(new FilterCreaturePermanent(), source.getControllerId(), game)) {
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(new FilterCreaturePermanent(), game)) {
if (permanent.getConvertedManaCost() == cmc) {
permanent.destroy(source.getSourceId(), game, false);
}