Commit 5b861398 authored by mercury233's avatar mercury233

fix merge

parent 85d5c5e7
...@@ -523,7 +523,7 @@ namespace WindBot.Game.AI.Decks ...@@ -523,7 +523,7 @@ namespace WindBot.Game.AI.Decks
} }
private bool infiniteTransience() private bool infiniteTransience()
{ {
return LastChainPlayer == 1; return Duel.LastChainPlayer == 1;
} }
private bool MaxxC() private bool MaxxC()
{ {
...@@ -637,7 +637,7 @@ namespace WindBot.Game.AI.Decks ...@@ -637,7 +637,7 @@ namespace WindBot.Game.AI.Decks
{ {
//if (Card.Id == CardId.Urara && Bot.HasInHand(CardId.LockBird) && Bot.HasInSpellZone(CardId.Re)) return false; //if (Card.Id == CardId.Urara && Bot.HasInHand(CardId.LockBird) && Bot.HasInSpellZone(CardId.Re)) return false;
if (Card.Id == CardId.GhostOgre && Card.Location == CardLocation.Hand && Bot.HasInMonstersZone(CardId.GhostOgre)) return false; if (Card.Id == CardId.GhostOgre && Card.Location == CardLocation.Hand && Bot.HasInMonstersZone(CardId.GhostOgre)) return false;
return (LastChainPlayer == 1); return (Duel.LastChainPlayer == 1);
} }
private bool MinervaTheExaltedEffect() private bool MinervaTheExaltedEffect()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment