Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YSPplayer committed Jul 31, 2023
1 parent d171931 commit b4a78b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Game/AI/CoreFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ private object HandleDuel(FunctionCode.Duel functionCode, params object[] parame
binaryWriter.Write((byte)1);
binaryWriter.Write((int)value);
}
else reply.Write((byte)0);
else binaryWriter.Write((byte)0);
};
int player = (int)parameters[0];
int code = (int)parameters[1];
Expand Down Expand Up @@ -2449,7 +2449,6 @@ public bool IsStatus(ClientCard c, int status)
/// </summary>
public bool IsRelateToChain(ClientCard c, int chainc)
{
//不随意调用
return HandleCardIntToBool(FunctionCode.Card.IsRelateToChain, c, chainc);
}

Expand Down

0 comments on commit b4a78b2

Please sign in to comment.