ue-mcp 0.4.16 → 0.4.17

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ue-mcp",
3
- "version": "0.4.16",
3
+ "version": "0.4.17",
4
4
  "description": "Unreal Engine MCP server — 19 tools, 300+ actions for AI-driven editor control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1925,7 +1925,7 @@ TSharedPtr<FJsonValue> FAssetHandlers::RemoveSocket(const TSharedPtr<FJsonObject
1925
1925
 
1926
1926
  if (USkeletalMesh* SKM = Cast<USkeletalMesh>(Asset))
1927
1927
  {
1928
- TArray<USkeletalMeshSocket*>& Sockets = SKM->GetMeshOnlySocketList();
1928
+ auto& Sockets = SKM->GetMeshOnlySocketList();
1929
1929
  for (int32 i = 0; i < Sockets.Num(); ++i)
1930
1930
  {
1931
1931
  if (Sockets[i] && Sockets[i]->SocketName == FName(*SocketName))