diff --git a/Assets/Scripts/Games/ForkLifter/ForkLifter.cs b/Assets/Scripts/Games/ForkLifter/ForkLifter.cs index 083f01aa8..1365ef3a0 100644 --- a/Assets/Scripts/Games/ForkLifter/ForkLifter.cs +++ b/Assets/Scripts/Games/ForkLifter/ForkLifter.cs @@ -303,10 +303,15 @@ namespace HeavenStudio.Games Gradients[i].gameObject.SetActive(gradType == (i)); } - if (lines && gradType != 2) + if (gradType != 2) { - mmLines.gameObject.SetActive(true); + mmLines.gameObject.SetActive(lines); } + else + { + mmLines.gameObject.SetActive(false); + } + vCircleToggle = (vCircle); }