diff options
author | Patrick Wuttke <mewin@mewin.de> | 2019-10-07 12:05:39 +0200 |
---|---|---|
committer | Patrick Wuttke <mewin@mewin.de> | 2019-10-08 11:54:29 +0200 |
commit | d8b36a452c83cf99befe3011ccf19bc0310bc387 (patch) | |
tree | 19d56f8686c3ea0b3da9fb05907f33edc9b93ac9 | |
parent | 98497ff71928daff6afb393b26e230e28bf18e3e (diff) |
check for cyclic inheritance when adding a global class
-rw-r--r-- | core/script_language.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/script_language.cpp b/core/script_language.cpp index 7201773ea5..cbe4681eca 100644 --- a/core/script_language.cpp +++ b/core/script_language.cpp @@ -218,6 +218,7 @@ void ScriptServer::global_classes_clear() { } void ScriptServer::add_global_class(const StringName &p_class, const StringName &p_base, const StringName &p_language, const String &p_path) { + ERR_FAIL_COND_MSG(p_class == p_base || (global_classes.has(p_base) && get_global_class_native_base(p_base) == p_class), "Cyclic inheritance in script class."); GlobalScriptClass g; g.language = p_language; g.path = p_path; |