Skip to content

1.2.0

Compare
Choose a tag to compare
@Lekuruu Lekuruu released this 04 Sep 19:26
· 145 commits to main since this release

What's Changed

Task system by @Lekuruu in #4

I recently experimented with threading and found out that the game client has a lot of issues with it.
So instead of investigating the issue, I implement a synchronous task queue that does everything I need for now.

In the future, I want to fix the threading issues and add support for it, in the task system.

Here is an example of registering a task:

# Example of a task, running every minute
@game.tasks.register(minutes=1, loop=True)
def example_task():
  ...

Full Changelog: 1.1.4...1.2.0