Fixed Sirens Call

This commit is contained in:
zaq 2016-10-29 17:52:40 +02:00
parent 2e7ad7aeb2
commit 0a70487e25

View file

@ -133,6 +133,11 @@ class SirensCallDestroyEffect extends OneShotEffect {
Player player = game.getPlayer(game.getActivePlayerId());
if (player != null) {
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(player.getId())) {
// Non Creature Cards are safe.
if(!permanent.getCardType().contains(CardType.CREATURE))
continue;
// Walls are safe.
if (permanent.getSubtype(game).contains("Wall")) {
continue;