Skip to content

Commit

Permalink
Fix SetPlayerSkin (add custom skin without DL client) for mobile clients
Browse files Browse the repository at this point in the history
Fix SetPlayerSkin (add custom skin without DL client) for mobile clients
  • Loading branch information
f0Re3t authored Sep 8, 2024
1 parent ef893c7 commit b336bfb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Shared/NetCode/core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,9 @@ namespace RPC

bs.writeUINT16(PlayerID);
bs.writeUINT32(Skin);
bs.writeUINT32(CustomSkin);

if (isDL)
bs.writeUINT32(CustomSkin);
}
};

Expand Down

0 comments on commit b336bfb

Please sign in to comment.