Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
W
windbot
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
alstroemeria-silentlove
windbot
Commits
02a88f2b
Commit
02a88f2b
authored
Aug 21, 2018
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix MSG_SELECT_SUM
parent
0bf87b7e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
Game/GameAI.cs
Game/GameAI.cs
+6
-0
Game/GameBehavior.cs
Game/GameBehavior.cs
+4
-2
No files found.
Game/GameAI.cs
View file @
02a88f2b
...
@@ -573,6 +573,12 @@ namespace WindBot.Game
...
@@ -573,6 +573,12 @@ namespace WindBot.Game
if
(
mode
)
if
(
mode
)
{
{
// equal
// equal
if
(
sum
==
0
&&
min
==
0
)
{
return
new
List
<
ClientCard
>();
}
if
(
min
<=
1
)
if
(
min
<=
1
)
{
{
// try special level first
// try special level first
...
...
Game/GameBehavior.cs
View file @
02a88f2b
...
@@ -1316,9 +1316,11 @@ namespace WindBot.Game
...
@@ -1316,9 +1316,11 @@ namespace WindBot.Game
{
{
result
[
index
++]
=
0
;
result
[
index
++]
=
0
;
}
}
for
(
int
i
=
0
;
i
<
selected
.
Count
;
++
i
)
int
l
=
0
;
while
(
l
<
selected
.
Count
)
{
{
result
[
index
++]
=
(
byte
)
selected
[
i
].
SelectSeq
;
result
[
index
++]
=
(
byte
)
selected
[
l
].
SelectSeq
;
++
l
;
}
}
BinaryWriter
reply
=
GamePacketFactory
.
Create
(
CtosMessage
.
Response
);
BinaryWriter
reply
=
GamePacketFactory
.
Create
(
CtosMessage
.
Response
);
...
...
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