-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
Hi LMS/Sam!
Is there any way you could put a bool that toggles the Available for Calls option?
In L.S. Noire I've tried using this:
private static void CalloutFiber() { while (true) { if (Functions.IsCalloutRunning() == true) { Functions.StopCurrentCallout(); } GameFiber.Yield(); } }
But that calls the End() and some callouts don't have checks in their End() so it crashes the game... (Bad callout devs, haha).
Thanks!