diff options
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 00ce8c6f7b..9f1d9ce5fe 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1719,7 +1719,7 @@ bool Main::start() { ERR_CONTINUE_MSG(obj == NULL, "Cannot instance script for autoload, expected 'Node' inheritance, got: " + String(ibt)); n = Object::cast_to<Node>(obj); - n->set_script(script_res.get_ref_ptr()); + n->set_script(script_res); } ERR_CONTINUE_MSG(!n, "Path in autoload not a node or script: " + path); |