mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-10 06:34:16 +00:00
fix checking if coroutine is running
This commit is contained in:
parent
1a9efae6b8
commit
62a8e4f4c9
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ namespace SanAndreasUnity.Utilities
|
|||
if (null == coroutineInfo)
|
||||
return false;
|
||||
|
||||
return m_coroutines.Contains(coroutineInfo);
|
||||
return m_coroutines.Contains(coroutineInfo) || m_newCoroutines.Contains(coroutineInfo);
|
||||
}
|
||||
|
||||
public void Update()
|
||||
|
|
Loading…
Reference in a new issue