mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
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:
parent
2d43f4fa0e
commit
7eb8d167b3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue