Commit 39290293 authored by mercury233's avatar mercury233

update Orcust

fix monsterpos
parent e08fbfcc
......@@ -164,7 +164,7 @@ namespace WindBot.Game.AI.Decks
AddExecutor(ExecutorType.Activate, CardId.SkyStrikerMechaEagleBooster, EagleBoosterEffect);
AddExecutor(ExecutorType.Repos, DefaultMonsterRepos);
AddExecutor(ExecutorType.Repos, MonsterRepos);
}
private bool NormalSummoned = false;
......@@ -921,5 +921,12 @@ namespace WindBot.Game.AI.Decks
}
return false;
}
private bool MonsterRepos()
{
if (Card.IsFacedown())
return true;
return DefaultMonsterRepos();
}
}
}
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