- Special case for Bone Dancer and ordering graveyards in "With Relevant Cards" mode.

This commit is contained in:
Agetian
2017-09-28 18:19:33 +00:00
parent 98215be0fc
commit 18529f47e7

View File

@@ -882,6 +882,12 @@ public class Game {
}
}
}
for (Card c : p.getOpponents().getCardsIn(ZoneType.Battlefield)) {
// Bone Dancer is important when an opponent has it active on the battlefield
if (c.hasSVar("NeedsOrderedGraveyard") && c.getName().equals("Bone Dancer")) {
return true;
}
}
return false;
}
}