summaryrefslogtreecommitdiffstats
path: root/modules/gdscript
diff options
context:
space:
mode:
authorHilderin <81109165+Hilderin@users.noreply.github.com>2024-08-09 08:23:22 -0400
committerHilderin <81109165+Hilderin@users.noreply.github.com>2024-08-10 19:21:24 -0400
commitd199f1f0d5277066605ef023e6a2a4484411f815 (patch)
treed8c7a0eb786845eb40ba56ec1b0ef097eb32d7ad /modules/gdscript
parent739019e4e4a6e4763e37adfd9883a1c85d5f6249 (diff)
downloadredot-engine-d199f1f0d5277066605ef023e6a2a4484411f815.tar.gz
Fix resolve class inheritance after file rename
Diffstat (limited to 'modules/gdscript')
-rw-r--r--modules/gdscript/gdscript_cache.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/modules/gdscript/gdscript_cache.cpp b/modules/gdscript/gdscript_cache.cpp
index 6eb35c9ac1..3b6526ffd9 100644
--- a/modules/gdscript/gdscript_cache.cpp
+++ b/modules/gdscript/gdscript_cache.cpp
@@ -155,15 +155,7 @@ void GDScriptCache::move_script(const String &p_from, const String &p_to) {
return;
}
- if (singleton->parser_map.has(p_from) && !p_from.is_empty()) {
- singleton->parser_map[p_to] = singleton->parser_map[p_from];
- }
- singleton->parser_map.erase(p_from);
-
- if (singleton->parser_inverse_dependencies.has(p_from) && !p_from.is_empty()) {
- singleton->parser_inverse_dependencies[p_to] = singleton->parser_inverse_dependencies[p_from];
- }
- singleton->parser_inverse_dependencies.erase(p_from);
+ remove_parser(p_from);
if (singleton->shallow_gdscript_cache.has(p_from) && !p_from.is_empty()) {
singleton->shallow_gdscript_cache[p_to] = singleton->shallow_gdscript_cache[p_from];