- Conspiracy: allow the player to look at his own face-down conspiracies. Properly hide the opponent's conspiracies (including the chosen name). Make the AI properly add drafted conspiracies to the [Conspiracy] section of the deck.

This commit is contained in:
Agetian
2017-08-17 14:52:36 +00:00
parent e85d6bebd0
commit 198d48fd84
4 changed files with 21 additions and 4 deletions

View File

@@ -72,12 +72,12 @@ public class RestartGameEffect extends SpellAbilityEffect {
player.setLandsPlayedLastTurn(0);
player.resetLandsPlayedThisTurn();
player.resetInvestigatedThisTurn();
player.initVariantsZones(psc);
List<Card> newLibrary = playerLibraries.get(player);
for (Card c : newLibrary) {
action.moveToLibrary(c, 0, sa);
}
player.initVariantsZones(psc);
player.shuffle(null);
}

View File

@@ -193,7 +193,7 @@ public class CardFactoryUtil {
card.setNamedCard(name);
card.turnFaceDown();
// Hopefully face down also hides the named card?
card.setMayLookAt(player, true);
card.addSpellAbility(abilityRevealHiddenAgenda(card));
return true;
}