ue-mcp 0.4.20 → 0.4.21

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.20",
3
+ "version": "0.4.21",
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",
@@ -2481,7 +2481,7 @@ TSharedPtr<FJsonValue> FBlueprintHandlers::SetComponentProperty(const TSharedPtr
2481
2481
  else if (FSoftObjectProperty* SoftProp = CastField<FSoftObjectProperty>(FinalProp))
2482
2482
  {
2483
2483
  FSoftObjectPath SoftPath(Value);
2484
- SoftProp->SetPropertyValue(ValuePtr, SoftPath);
2484
+ SoftProp->SetPropertyValue(ValuePtr, FSoftObjectPtr(SoftPath));
2485
2485
  }
2486
2486
  else
2487
2487
  {