From aafc326f95ca3eaa83850dc5cc3eeebe356063fc Mon Sep 17 00:00:00 2001 From: PopSlime Date: Sun, 26 Mar 2023 22:40:19 +0800 Subject: [PATCH] Fix collapse operators not correctly parsed after the scope is downgraded. --- Assets/Cryville/Common/Pdt/PdtExpression.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Cryville/Common/Pdt/PdtExpression.cs b/Assets/Cryville/Common/Pdt/PdtExpression.cs index 641f9f0..18e0136 100644 --- a/Assets/Cryville/Common/Pdt/PdtExpression.cs +++ b/Assets/Cryville/Common/Pdt/PdtExpression.cs @@ -195,7 +195,7 @@ namespace Cryville.Common.Pdt { default: pc++; break; } } - else if (OP_TYPE[t2.Value[0]] == 1) { + if (OP_TYPE[t2.Value[0]] == 1) { colp = new Dictionary, string> { { ins.Last, t2.Value } }; } t1 = t2;