logic fix #6416
This commit is contained in:
parent
fdd143d2ff
commit
f66eda0c9a
1 changed files with 2 additions and 1 deletions
|
@ -579,7 +579,8 @@ public class TurnPathHelper {
|
|||
if (secondTurnType == 0) {
|
||||
turnResource = new TurnResource(firstTurnType, false, false, leftSide);
|
||||
} else if (secondTurnType == TurnType.C || thirdTurnType == TurnType.C
|
||||
|| secondTurnType == TurnType.TSLL || secondTurnType == TurnType.TSLR) {
|
||||
|| ((firstTurnType == TurnType.TL || firstTurnType == TurnType.TR)
|
||||
&& (secondTurnType == TurnType.TSLL || secondTurnType == TurnType.TSLR))) {
|
||||
turnResource = new TurnResource(firstTurnType, true, false, leftSide);
|
||||
} else {
|
||||
if (firstTurnType == TurnType.TU || firstTurnType == TurnType.TRU) {
|
||||
|
|
Loading…
Reference in a new issue