Change explicit 'Godot 4.0' references to 'Godot 4'

Fixes #79276.
This commit is contained in:
Rémi Verschelde 2023-07-10 13:08:11 +02:00
parent 7030ac555f
commit 8a06ec979e
No known key found for this signature in database
GPG key ID: C3336907360768E1
6 changed files with 33 additions and 33 deletions

View file

@ -3229,7 +3229,7 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_type_test(ExpressionNode *
}
GDScriptParser::ExpressionNode *GDScriptParser::parse_yield(ExpressionNode *p_previous_operand, bool p_can_assign) {
push_error(R"("yield" was removed in Godot 4.0. Use "await" instead.)");
push_error(R"("yield" was removed in Godot 4. Use "await" instead.)");
return nullptr;
}