sasinosoft 0 Posted January 8 Share Posted January 8 I've created 4 callouts in a single VS solution, however, only one of them gets called automatically, while the others are never called, but they work if I force them using the debug menu. The one that works has these requirements: public override Task<bool> CheckRequirements() => Task.FromResult(true); The others: public override Task<bool> CheckRequirements() => Task.FromResult(World.CurrentDayTime <= TimeSpan.FromHours(4)); public override Task<bool> CheckRequirements() => Task.FromResult(World.CurrentDayTime <= TimeSpan.FromHours(5)); public override Task<bool> CheckRequirements() => Task.FromResult(true); I don't think it's caused by the requirements though, because the last callout has the same requirements as the one that works. Quote Link to post Share on other sites
BGHDDevelopment 258 Posted January 11 Share Posted January 11 This content has been moved to the correct section by the Community Team. Next time please post in the correct section. If you feel this was a mistake, please report this reply with a valid reason. Quote YouTube | Callouts | Twitter Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.