Fix typo in static method binding generator

Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
pull/783/head
Rémi Verschelde 2022-07-08 15:30:23 +02:00
parent 666a378336
commit bffedfed1e
1 changed files with 1 additions and 1 deletions

View File

@ -1152,7 +1152,7 @@ def generate_engine_class_source(class_api, used_classes, fully_used_classes, us
method_call += f"return internal::_call_native_mb_ret<{get_gdnative_type(correct_type(return_type, meta_type))}>(___method_bind, _owner"
elif is_refcounted(return_type):
if method["is_static"]:
method_call += f"return Ref<{return_type}>::___internal_constructor(internal::_call_native_mb_ret_obj<{return_type}>(___method_bind, _nullptr"
method_call += f"return Ref<{return_type}>::___internal_constructor(internal::_call_native_mb_ret_obj<{return_type}>(___method_bind, nullptr"
else:
method_call += f"return Ref<{return_type}>::___internal_constructor(internal::_call_native_mb_ret_obj<{return_type}>(___method_bind, _owner"
is_ref = True