Remove undo/redo code from UE Wingman

This commit is contained in:
2026-03-23 14:33:50 -04:00
parent 92b03d376d
commit 741253fd3b
3 changed files with 3 additions and 5 deletions

View File

@@ -323,6 +323,9 @@ void UWingServer::TryCallHandler(const FString &Line)
return;
}
// MCP handlers must not run inside an undo transaction.
check(GUndo == nullptr);
// Invoke the handler.
Handler->Handle();
}