mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Merge pull request #2612 from spinlock-x/sanguine_fix
Fix for Sanguine Praetor
This commit is contained in:
commit
2eeabe2f01
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