Fix claude settings

This commit is contained in:
2026-02-17 11:51:58 -05:00
parent 55ad662d3f
commit 9b1dd00a45
3 changed files with 6 additions and 7 deletions

View File

@@ -2,9 +2,8 @@
"permissions": {
"allow": [
"WebFetch(domain:dev.epicgames.com)",
"WebSearch",
"WebFetch(domain:github.com)",
"Bash(chmod:*)"
"Bash(grep:*)"
],
"deny": [
"Bash(git commit *)",

Binary file not shown.

View File

@@ -53,13 +53,13 @@ FString FlxBlueprintExporter::FormatPinType(UEdGraphPin* Pin)
FString FlxBlueprintExporter::FormatNodeBaseName(UEdGraphNode* Node)
{
FString Title = Node->GetNodeTitle(ENodeTitleType::ListView).ToString();
Title = FName::NameToDisplayString(*Title, false);
FString Title = Node->GetNodeTitle(ENodeTitleType::FullTitle).ToString();
int32 NewlineIdx;
if (Title.FindChar(TEXT('\n'), NewlineIdx))
Title.LeftInline(NewlineIdx);
return SanitizeName(Title);
}
UEdGraphPin* FlxBlueprintExporter::GetLinkedTo(UEdGraphPin* Pin)
{
while (true)