Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Stuyk/liftv
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuyk committed May 4, 2024
2 parents 1b882fe + a683bb4 commit 9951840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/server/player/clothing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export function useClothing(player: alt.Player) {
player.clearProp(propComponents[i]);
}

if (typeof data.skin === null || typeof data.skin === undefined) {
if (data.skin === null || typeof data.skin === 'undefined') {
const useModel = data.appearance.sex === 1 ? mModel : fModel;
if (player.model !== useModel) {
player.model = useModel;
Expand Down

0 comments on commit 9951840

Please sign in to comment.