@rbxts/falldown 1.1.3 → 1.1.4

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/out/init.luau +15 -5
  2. package/package.json +1 -1
package/out/init.luau CHANGED
@@ -637,7 +637,9 @@ do
637
637
  if self.HumanoidRootPart.Anchored then
638
638
  return nil
639
639
  end
640
- self.HumanoidRootPart:SetNetworkOwner(self.Owner)
640
+ pcall(function()
641
+ self.HumanoidRootPart:SetNetworkOwner(self.Owner)
642
+ end)
641
643
  end)
642
644
  self.Ended:Fire()
643
645
  self.Ended:Destroy()
@@ -789,7 +791,9 @@ do
789
791
  if self.HumanoidRootPart.Anchored then
790
792
  return nil
791
793
  end
792
- self.HumanoidRootPart:SetNetworkOwner(self.Owner)
794
+ pcall(function()
795
+ self.HumanoidRootPart:SetNetworkOwner(self.Owner)
796
+ end)
793
797
  end)
794
798
  self.Humanoid.EvaluateStateMachine = true
795
799
  self.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, true)
@@ -859,7 +863,9 @@ do
859
863
  weld.Parent = proxyPart
860
864
  proxyPart.Parent = Workspace
861
865
  if not proxyPart.Anchored then
862
- proxyPart:SetNetworkOwner(owner)
866
+ pcall(function()
867
+ proxyPart:SetNetworkOwner(owner)
868
+ end)
863
869
  end
864
870
  proxyPart.CollisionGroup = proxyGroupId
865
871
  originalPart.CollisionGroup = bodypartGroupId
@@ -904,7 +910,9 @@ do
904
910
  for _1, descendant in character:GetDescendants() do
905
911
  if descendant:IsA("BasePart") then
906
912
  if not descendant.Anchored then
907
- descendant:SetNetworkOwner(owner)
913
+ pcall(function()
914
+ descendant:SetNetworkOwner(owner)
915
+ end)
908
916
  end
909
917
  descendant.CollisionGroup = bodypartGroupId
910
918
  end
@@ -1165,7 +1173,9 @@ do
1165
1173
  for _1, descendant in character:GetDescendants() do
1166
1174
  if descendant:IsA("BasePart") then
1167
1175
  if not descendant.Anchored then
1168
- descendant:SetNetworkOwner(owner)
1176
+ pcall(function()
1177
+ descendant:SetNetworkOwner(owner)
1178
+ end)
1169
1179
  end
1170
1180
  descendant.CollisionGroup = bodypartGroupId
1171
1181
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/falldown",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "A realistic ragdoll physics system for Roblox with smooth getup animations, collision management, and customizable velocity modes. Supports both R6 and R15 rigs with surface-aware positioning.",
5
5
  "main": "out/init.luau",
6
6
  "scripts": {