LavaGang / MelonLoader

The World's First Universal Mod Loader for Unity Games compatible with both Il2Cpp and Mono
https://discord.gg/2Wn3N2P
Apache License 2.0
2.38k stars 472 forks source link

[Bug]: Coroutines not working #377

Closed ZereX666 closed 1 year ago

ZereX666 commented 1 year ago

All of the following criteria must be met

All of the following are optional to answer

Describe the issue.

Coroutines stopped working after the game updated the Unity version from 2018.4.2f1 to 2021.3.10f1

MelonLogger.Msg("1");
yield return new WaitForSeconds(2f);
MelonLogger.Msg("2");
yield return null;
[14:24:46.946] [LM_Additions] 1
[14:24:46.950] [LM_Additions] 2

New Unity Version: 2021.3.10f1 (don`t work) Old Unity Version: 2018.4.2f1

Did you attach your log file?

TrevTV commented 1 year ago

Sounds like a duplicate of #327

HerpDerpinstine commented 1 year ago

Closing due to being a duplicate of #327