From 0cc3e05b75cd2c66b2145dbf3398978099294c69 Mon Sep 17 00:00:00 2001 From: filoxenace Date: Tue, 7 Apr 2026 01:31:57 -0400 Subject: [PATCH] fix(logging): standardize error message format --- src/convert.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/convert.luau b/src/convert.luau index 337ba04..08994ad 100644 --- a/src/convert.luau +++ b/src/convert.luau @@ -28,7 +28,7 @@ local function headMeshFromHumanoidDescription(humDesc: HumanoidDescription): nu if HeadShape ~= "" then return meshByName[HeadShape] end - warn(`Head with ID {bodyPartDescription.AssetId} has no mesh equivalent - defaulting to classic head`) + warn(`rbx-reface: head with ID {bodyPartDescription.AssetId} has no mesh equivalent - defaulting to classic head`) end return meshByName["RobloxClassic"] end