浏览代码

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));