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

GDScript assert message parsing bug fixed

Fix: #43540
This commit is contained in:
Thakee Nathees
2020-12-27 11:27:50 +05:30
parent 7d972b8c67
commit ebade0e454
3 changed files with 8 additions and 8 deletions

View File

@@ -286,7 +286,7 @@ public:
struct AssertNode : public Node {
ExpressionNode *condition = nullptr;
LiteralNode *message = nullptr;
ExpressionNode *message = nullptr;
AssertNode() {
type = ASSERT;