Remove DWORD skin IDs from player customisation APIs

This commit is contained in:
notmatthewbeshay
2026-03-10 07:25:29 +11:00
parent 62a1aea3fc
commit 3f374cecad
6 changed files with 31 additions and 29 deletions

View File

@@ -1139,12 +1139,12 @@ void LocalPlayer::onCrafted(std::shared_ptr<ItemInstance> item)
}
}
void LocalPlayer::setAndBroadcastCustomSkin(DWORD skinId)
void LocalPlayer::setAndBroadcastCustomSkin(std::uint32_t skinId)
{
setCustomSkin(skinId);
}
void LocalPlayer::setAndBroadcastCustomCape(DWORD capeId)
void LocalPlayer::setAndBroadcastCustomCape(std::uint32_t capeId)
{
setCustomCape(capeId);
}
@@ -1613,4 +1613,3 @@ void LocalPlayer::SetPlayerAdditionalModelParts(std::vector<ModelPart *>pAdditio
{
m_pAdditionalModelParts=pAdditionalModelParts;
}