diff options
Diffstat (limited to 'aggro.py')
| -rw-r--r-- | aggro.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -79,15 +79,15 @@ if __name__ == "__main__": memory_state.running = True + server_thread = Thread(target=run_server_thread, args=[aggro_config]) + server_thread.daemon = True + server_thread.start() + manager.initial_run_scheduled_plugins() plugin_thread = Thread(target=run_plugin_thread, args=[manager, aggro_config]) plugin_thread.start() - server_thread = Thread(target=run_server_thread, args=[aggro_config]) - server_thread.daemon = True - server_thread.start() - try: while memory_state.running: time.sleep(0.1) |
