瀏覽代碼

Merge pull request #58327 from megalobyte/fix-vs-call-crash

Rémi Verschelde 3 年之前
父節點
當前提交
89ca0a1325
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/visual_script/editor/visual_script_editor.cpp

+ 1 - 1
modules/visual_script/editor/visual_script_editor.cpp

@@ -3535,7 +3535,7 @@ void VisualScriptEditor::_selected_connect_node(const String &p_text, const Stri
 		print_error("Category not handled: " + p_category.quote());
 	}
 
-	if (Object::cast_to<VisualScriptFunctionCall>(vnode.ptr()) && p_category != "Class") {
+	if (Object::cast_to<VisualScriptFunctionCall>(vnode.ptr()) && p_category != "Class" && p_category != "VisualScriptNode") {
 		Vector<String> property_path = p_text.split(":");
 		String class_of_method = property_path[0];
 		String method_name = property_path[1];