Skip to content

Commit

Permalink
Handle new deck error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed May 24, 2022
1 parent 5f97051 commit b5a0e3f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gframe/duelclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,14 @@ void DuelClient::HandleSTOCPacketLanAsync(const std::vector<uint8_t>& data) {
text = gDataManager->GetSysString(1425).data();
break;
}
case DeckError::TOOMANYLEGENDS: {
text = gDataManager->GetSysString(1426).data();
break;
}
case DeckError::TOOMANYSKILLS: {
text = gDataManager->GetSysString(1427).data();
break;
}
default: {
text = gDataManager->GetSysString(1406).data();
break;
Expand Down

0 comments on commit b5a0e3f

Please sign in to comment.