Skip to content

Commit

Permalink
Revert "GDScript: Don't allow built-in scripts to use class_name"
Browse files Browse the repository at this point in the history
This reverts commit 42514bf.

There is still an unsolved regression from this commit (#28002)
which needs to be addressed before cherry-picking this one.
  • Loading branch information
akien-mga committed Apr 21, 2019
1 parent 4aa7760 commit cab4921
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions modules/gdscript/gdscript_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3494,10 +3494,6 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
_set_error("'class_name' is only valid for the main class namespace.");
return;
}
if (self_path.empty()) {
_set_error("'class_name' not allowed in built-in scripts.");
return;
}
if (tokenizer->get_token(1) != GDScriptTokenizer::TK_IDENTIFIER) {

_set_error("'class_name' syntax: 'class_name <UniqueName>'");
Expand Down

0 comments on commit cab4921

Please sign in to comment.