Commit 20672af6 authored by handsomekiwi's avatar handsomekiwi Committed by mercury233

yesno to option (#62)

parent 36018614
...@@ -592,12 +592,12 @@ namespace WindBot.Game.AI.Decks ...@@ -592,12 +592,12 @@ namespace WindBot.Game.AI.Decks
if (!OvertexCoatlseff_used && Bot.GetRemainingCount(CardId.OvertexCoatls, 3) > 0) if (!OvertexCoatlseff_used && Bot.GetRemainingCount(CardId.OvertexCoatls, 3) > 0)
{ {
AI.SelectCard(CardId.OvertexCoatls); AI.SelectCard(CardId.OvertexCoatls);
AI.SelectYesNo(false); AI.SelectOption(0);
} }
else else
{ {
AI.SelectCard(CardId.UltimateConductorTytanno); AI.SelectCard(CardId.UltimateConductorTytanno);
AI.SelectYesNo(true); AI.SelectOption(1);
} }
return true; return true;
} }
......
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