From 4e58db9f1244a00b1f29d9a0b57f77cfe32c0a44 Mon Sep 17 00:00:00 2001 From: Josh Faust Date: Fri, 11 May 2018 11:20:27 -0700 Subject: Fix crash on editor startup when running with platform=server --- editor/doc/doc_data.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index 3434aa33f9..c992ac5f16 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -567,6 +567,9 @@ void DocData::generate(bool p_basic_types) { PropertyDoc pd; Engine::Singleton &s = E->get(); + if (!s.ptr) { + continue; + } pd.name = s.name; pd.type = s.ptr->get_class(); while (String(ClassDB::get_parent_class(pd.type)) != "Object") -- cgit v1.2.3