Merge pull request #58670 from KoBeWi/internal_debugger

This commit is contained in:
Rémi Verschelde
2022-03-04 10:44:56 +01:00
committed by GitHub
2 changed files with 15 additions and 3 deletions

View File

@@ -796,7 +796,7 @@ void GDScript::_set_subclass_path(Ref<GDScript> &p_sc, const String &p_path) {
String GDScript::_get_debug_path() const {
if (is_built_in() && !get_name().is_empty()) {
return get_name() + " (" + get_path().get_slice("::", 0) + ")";
return get_name() + " (" + get_path() + ")";
} else {
return get_path();
}