CraftSpider/TalosBot

Need a non-blocking way to wait for WW end in Discord

cruxicheiros opened this issue · 1 comments

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.

Turns out that 'await asyncio.sleep()' is non-blocking, so we just do that.