Skip to content

Commit

Permalink
Fix alias declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed Jun 29, 2021
1 parent 7208576 commit cb29999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Game/GameBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,7 @@ private void OnAnnounceCard(BinaryReader packet)
{
if (card.HasType(CardType.Token) && !token)
continue;
if ((card.Alias > 0 && card.Id - card.Alias < 10) && !alias)
if (card.Alias > 0 && !alias)
continue;
LinkedList<long> stack = new LinkedList<long>();
for (int i = 0; i < opcodes.Count; i++)
Expand Down

0 comments on commit cb29999

Please sign in to comment.