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

git-svn-id: http://svn.slightlymagic.net/forge/trunk@35821 269b9781-a132-4a9b-9d4e-f004f1b56b58
This commit is contained in:
Agetian 2017-09-28 18:19:33 +00:00
parent 825b02f5b1
commit f9d5ed6292

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;
}
}