Skip to content

Commit

Permalink
fix: Fixed SendAction issue with TripleTriadCoinExchange in DT
Browse files Browse the repository at this point in the history
  • Loading branch information
RedWine82 committed Aug 28, 2024
1 parent 70b2a89 commit c67187c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RemoteWindows/TripleTriadCoinExchange.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ public bool[] GetCardInDeck()

public void OpenShopCardDialog(uint index)
{
#if RB_DT
SendAction(2, 3, 0, 5, index);
#else
SendAction(2, 3, 0, 4, index);
#endif
}
}
}

0 comments on commit c67187c

Please sign in to comment.