From c287f220ced4cb04623797406a30e8264800ded5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 2 Oct 2019 19:17:59 +0200 Subject: Revert "Fix plugin script classes defined even if inactive." --- editor/editor_file_system.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index 5ea7081667..3663bdee27 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -1411,9 +1411,6 @@ String EditorFileSystem::_get_global_script_class(const String &p_type, const St } void EditorFileSystem::_scan_script_classes(EditorFileSystemDirectory *p_dir) { - if (p_dir->parent && p_dir->parent->name == "addons" && !EditorNode::get_singleton()->is_addon_plugin_enabled(p_dir->name)) { - return; - } int filecount = p_dir->files.size(); const EditorFileSystemDirectory::FileInfo *const *files = p_dir->files.ptr(); for (int i = 0; i < filecount; i++) { -- cgit v1.2.3