1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

GDScript: Fix issues when deriving from other scripts

This commit is contained in:
George Marques
2020-08-26 14:50:27 -03:00
parent 722be9aaef
commit 8ccf88a206
3 changed files with 23 additions and 10 deletions

View File

@@ -631,7 +631,6 @@ void GDScriptParser::parse_extends() {
current_class->extends_path = previous.literal;
if (!match(GDScriptTokenizer::Token::PERIOD)) {
end_statement("superclass path");
return;
}
}