diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-09 10:30:14 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-09 10:30:14 +0300 |
commit | 0e92b45e3133788b15bf0a6c46f3317315363c8b (patch) | |
tree | 3a12129fdc39a1f2e88acc024118f1e55426d820 /Source | |
parent | 1fd20b1692b57cd78f8e091cc846cf83cec7bf67 (diff) |
Fix for RAUPIANO t-pieces in request modifier
Diffstat (limited to 'Source')
-rw-r--r-- | Source/Assistant/RequestModifier.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Assistant/RequestModifier.cs b/Source/Assistant/RequestModifier.cs index 0db0b90..9f42e71 100644 --- a/Source/Assistant/RequestModifier.cs +++ b/Source/Assistant/RequestModifier.cs @@ -36,6 +36,9 @@ namespace RehauSku.Assistant int.Parse($"{match[6]}{match[7]}") }; + if (new[] { endFaces[0], endFaces[1], side }.Any(x => x == 45 || x == 90 || x == 87)) + return line; + List<string> additions = new List<string>(); if (endFaces.All(x => x < side)) |