Merge pull request #2612 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) {
permanent.destroy(source.getSourceId(), game, false);
}