Need a non-blocking way to wait for WW end in Discord
cruxicheiros opened this issue · 1 comments
cruxicheiros commented
JS-Talos runs linearly and as of such can check the time every time it loops.
Python-Talos runs asynchronously and I'm not sure how to implement anything similar.
CraftSpider commented
Turns out that 'await asyncio.sleep()' is non-blocking, so we just do that.