소스 검색

Fix color sliders being unlocked

Bepis 7 년 전
부모
커밋
bb0f91da72
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Plugins/SliderUnlocker/SliderUnlocker.cs

+ 2 - 1
Plugins/SliderUnlocker/SliderUnlocker.cs

@@ -87,7 +87,8 @@ namespace SliderUnlocker
             foreach (Type type in illusion.GetTypes())
             {
                 if (type.Name.ToUpper().StartsWith("CVS") &&
-                    type.Name != "CvsDrawCtrl")
+                    type != typeof(CvsDrawCtrl) &&
+                    type != typeof(CvsColor))
                 {
                     cvsInstances.AddRange(GameObject.FindObjectsOfType(type));