roavatar-renderer 1.5.4 → 1.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +5 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -48262,6 +48262,11 @@ class HumanoidDescriptionWrapper extends InstanceWrapper {
48262
48262
  } else {
48263
48263
  const head2 = dataModel.FindFirstChildOfClass("MeshPart");
48264
48264
  if (head2) {
48265
+ for (const childChild of head2.GetChildren()) {
48266
+ if (childChild.w?.IsA("Weld") || childChild.w?.IsA("AnimationConstraint")) {
48267
+ childChild.Destroy();
48268
+ }
48269
+ }
48265
48270
  replaceBodyPart(rig, head2);
48266
48271
  }
48267
48272
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roavatar-renderer",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "A renderer for Roblox avatars, used by the RoAvatar extension.",
5
5
  "author": "steinan",
6
6
  "type": "module",