Parcourir la source

协程锁Bug修复 (#561)

kylinok il y a 1 an
Parent
commit
7b3bca5788

+ 1 - 1
Unity/Assets/Scripts/Core/Fiber/Module/CoroutineLock/CoroutineLockQueueType.cs

@@ -41,7 +41,7 @@ namespace ET
                 return;
                 return;
             }
             }
 
 
-            if (queue.Notify(level))
+            if (!queue.Notify(level))
             {
             {
                 self.Remove(key);
                 self.Remove(key);
             }
             }