mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Special case for Bone Dancer and ordering graveyards in "With Relevant Cards" mode.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user