Fixed return type for get_stack() function call
This commit is contained in:
parent
93a888e81e
commit
d227a9ae12
1 changed files with 1 additions and 1 deletions
|
@ -1853,7 +1853,7 @@ MethodInfo GDScriptFunctions::get_info(Function p_func) {
|
||||||
} break;
|
} break;
|
||||||
case GET_STACK: {
|
case GET_STACK: {
|
||||||
MethodInfo mi("get_stack");
|
MethodInfo mi("get_stack");
|
||||||
mi.return_val.type = Variant::NIL;
|
mi.return_val.type = Variant::ARRAY;
|
||||||
return mi;
|
return mi;
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue