Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed Oct 22, 2023
1 parent bc39445 commit 256e9d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion c-api/cache/CachedPlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,10 @@ namespace cache
bool SetClothes(uint8_t component, uint16_t drawable, uint8_t texture, uint8_t palette) override {
return false;
}
std::vector<alt::DlcCloth> _dlcClothes = {};

bool ClearClothes(uint8_t component) override {}

std::vector<alt::DlcCloth> _dlcClothes = {};
alt::DlcCloth GetDlcClothes(uint8_t component) const override {
if (_dlcClothes.size() <= component) return { 0, 0, 0, 0 };
return _dlcClothes[component];
Expand Down

0 comments on commit 256e9d6

Please sign in to comment.