Fix TriggerEvent.SetCancel

master
hadashiA 2023-09-03 20:40:04 +09:00
parent 22940635fe
commit af2e49aa29
1 changed files with 1 additions and 1 deletions

View File

@ -86,8 +86,8 @@ namespace Cysharp.Threading.Tasks
LogError(ex); LogError(ex);
} }
iteratingNode = null;
var next = h == iteratingNode ? h.Next : iteratingNode; var next = h == iteratingNode ? h.Next : iteratingNode;
iteratingNode = null;
Remove(h); Remove(h);
h = next; h = next;
} }