mirror of
https://github.com/Relintai/mtg-forge-ios.git
synced 2025-01-22 09:47:19 +01:00
- 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:
parent
825b02f5b1
commit
f9d5ed6292
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user