Raise guiLoop delay

As it's no longer responsible for drawing the GUI, it can be called way
less frequently.
This commit is contained in:
Fierelier 2020-11-21 01:49:20 +01:00
parent d5357885ff
commit ff1ea3f087
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ def discordClient(token):
addGuiTask(gui,gui.fillMessageLog,())
guiLock.release()
@tasks.loop(seconds=0.033)
@tasks.loop(seconds=0.5)
async def guiLoop():
guis = []
guiLock.acquire()