Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
W
Windbot-408
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
神之吹息
Windbot-408
Commits
3e8bb14c
Commit
3e8bb14c
authored
Apr 17, 2018
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
b4fb58b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
Game/AI/Decks/LightswornShaddoldinosourExecutor.cs
Game/AI/Decks/LightswornShaddoldinosourExecutor.cs
+4
-5
No files found.
Game/AI/Decks/LightswornShaddoldinosourExecutor.cs
View file @
3e8bb14c
...
...
@@ -517,11 +517,10 @@ namespace WindBot.Game.AI.Decks
private
bool
FairyTailSnowsummon
()
{
IList
<
ClientCard
>
list
=
Enemy
.
GetMonsters
();
if
(
list
!=
null
)
{
ClientCard
target
=
AI
.
Utils
.
GetBestEnemyMonster
(
true
);
if
(
target
!=
null
)
{
if
(
list
.
GetHighestAttackMonster
().
IsFaceup
())
return
true
;
}
return
false
;
...
...
@@ -533,7 +532,7 @@ namespace WindBot.Game.AI.Decks
if
(
Card
.
Location
==
CardLocation
.
MonsterZone
)
{
AI
.
SelectCard
(
AI
.
Utils
.
GetBestEnemyMonster
());
AI
.
SelectCard
(
AI
.
Utils
.
GetBestEnemyMonster
(
true
));
return
true
;
}
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment