From 37a9502a109edd90b9977f374d02fda726fb7525 Mon Sep 17 00:00:00 2001 From: filoxenace Date: Fri, 27 Mar 2026 17:32:34 -0400 Subject: [PATCH] fix: technically incorrect type (`:IsA`) refines --- src/convert.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/convert.luau b/src/convert.luau index 9113906..7971e03 100644 --- a/src/convert.luau +++ b/src/convert.luau @@ -42,7 +42,7 @@ local meshByName: {[string]: number} = { } local function headMeshFromHumanoidDescription(humDesc: HumanoidDescription): number - for _, bodyPartDescription: BodyPartDescription in humDesc:GetChildren() do + for _, bodyPartDescription in humDesc:GetChildren() do if not bodyPartDescription:IsA("BodyPartDescription") then continue end local HeadShape = bodyPartDescription.HeadShape if HeadShape ~= "" then