From 4de6619a40129a0522d611142a3bae844a76679c Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 15 Jun 2022 10:00:37 +0200 Subject: [PATCH] Fix typo. --- modules/material_maker/algos/mm_algos_bind.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/material_maker/algos/mm_algos_bind.cpp b/modules/material_maker/algos/mm_algos_bind.cpp index 3ac8bec40..449ec9fd1 100644 --- a/modules/material_maker/algos/mm_algos_bind.cpp +++ b/modules/material_maker/algos/mm_algos_bind.cpp @@ -1020,10 +1020,10 @@ void _MMAlgos::unregister_node_class(const String &category, const String &cls) } void _MMAlgos::register_node_script(const String &category, const String &file_path) { - MMAlgos::register_node_class(category, file_path); + MMAlgos::register_node_script(category, file_path); } void _MMAlgos::unregister_node_script(const String &category, const String &file_path) { - MMAlgos::unregister_node_class(category, file_path); + MMAlgos::unregister_node_script(category, file_path); } _MMAlgos *_MMAlgos::get_singleton() {