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

Merge pull request #44719 from ThakeeNathees/assert-argument-bug-fixed

GDScript assert message parsing bug fixed
This commit is contained in:
Rémi Verschelde
2021-01-11 13:51:44 +01:00
committed by GitHub
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;