1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 01:01:05 -09:00

Merge pull request from spinlock-x/sanguine_fix

Fix for Sanguine Praetor
This commit is contained in:
Samuel Sandeen 2016-11-20 15:30:45 -05:00 committed by GitHub
commit 2eeabe2f01

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) { if (permanent.getConvertedManaCost() == cmc) {
permanent.destroy(source.getSourceId(), game, false); permanent.destroy(source.getSourceId(), game, false);
} }