Skip to content

Commit

Permalink
Merge pull request #162 from AudriusButkevicius/patch-2
Browse files Browse the repository at this point in the history
Fix incorrect character preview
  • Loading branch information
Necrolis authored Aug 17, 2024
2 parents 8c9168d + 0b005e5 commit 6e74f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/D2Game/src/GAME/Clients.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ void __fastcall CLIENTS_FillCharacterPreviewInfo(D2ClientStrc* pClient, D2Charac

if (nPlayerLevel != 0 && nPlayerLevel <= 99)
{
pCharacterPreviewInfo->nLevel = nPlayerClassId;
pCharacterPreviewInfo->nLevel = nPlayerLevel;
}
else
{
Expand Down

0 comments on commit 6e74f3c

Please sign in to comment.