Fixed return type for get_stack() function call

This commit is contained in:
WiggleWizard 2018-09-05 11:29:06 +01:00
parent 93a888e81e
commit d227a9ae12

View file

@ -1853,7 +1853,7 @@ MethodInfo GDScriptFunctions::get_info(Function p_func) {
} break;
case GET_STACK: {
MethodInfo mi("get_stack");
mi.return_val.type = Variant::NIL;
mi.return_val.type = Variant::ARRAY;
return mi;
} break;