Skip to content

Commit

Permalink
fix custom skin model id range
Browse files Browse the repository at this point in the history
  • Loading branch information
edgyaf committed Jan 9, 2024
1 parent fc5b4c8 commit 445844a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/Components/CustomModels/models.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ class CustomModelsComponent final : public ICustomModelsComponent, public Player
return false;
}

if (type == ModelType::Skin && !(id >= 20000 && id <= 30000))
if (type == ModelType::Skin && !(id > 20000 && id <= 30000))
return false;
else if (type == ModelType::Object && !(id >= -30000 && id <= -1000))
return false;
Expand Down

0 comments on commit 445844a

Please sign in to comment.