From 0ee689532b48b1f756c544d037a4abbbd39cb3d8 Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 2 Oct 2019 18:42:58 +0200 Subject: [PATCH] ZoneCodeGenerator: Fix conditions only being able to have one conditionStatement --- .../Parsing/CommandFile/Tests/TestCondition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZoneCodeGenerator/Parsing/CommandFile/Tests/TestCondition.cs b/src/ZoneCodeGenerator/Parsing/CommandFile/Tests/TestCondition.cs index ad23a06a..8745421e 100644 --- a/src/ZoneCodeGenerator/Parsing/CommandFile/Tests/TestCondition.cs +++ b/src/ZoneCodeGenerator/Parsing/CommandFile/Tests/TestCondition.cs @@ -50,7 +50,7 @@ namespace ZoneCodeGenerator.Parsing.CommandFile.Tests new MatcherWithTag(OperandTag), new MatcherGroupOptional(new MatcherGroupAnd( new MatcherWithTag(OperationTag), - new MatcherWithTag(OperandTag) + new MatcherWithTag(ConditionStatementTag) )) ) ).WithTag(ConditionStatementTag);