From 677c7bdf9a2eab087e07468fed50bdb7df4be3b0 Mon Sep 17 00:00:00 2001 From: "dollth.ing" <106849604+dollth-ing@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:50:45 +1300 Subject: [PATCH] Update ModelImporter.cs updated error text --- Penumbra/Import/Models/Import/ModelImporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Penumbra/Import/Models/Import/ModelImporter.cs b/Penumbra/Import/Models/Import/ModelImporter.cs index c912ed15..f294d2f4 100644 --- a/Penumbra/Import/Models/Import/ModelImporter.cs +++ b/Penumbra/Import/Models/Import/ModelImporter.cs @@ -235,7 +235,7 @@ public partial class ModelImporter(ModelRoot model, IoNotifier notifier) } if (boneIndices.Count > 128) - throw notifier.Exception("XIV does not support meshes weighted to a total of more than 64 bones."); + throw notifier.Exception("XIV does not support meshes weighted to a total of more than 128 bones."); var boneIndicesArray = new ushort[128]; Array.Copy(boneIndices.ToArray(), boneIndicesArray, boneIndices.Count);