From cabe70468c209b2d1a083398da921ab7f4e2ca0a Mon Sep 17 00:00:00 2001 From: nemesis Date: Mon, 10 Nov 2025 12:07:59 +0100 Subject: [PATCH] async stats --- asmodee.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asmodee.py b/asmodee.py index 8efd729..5a50388 100644 --- a/asmodee.py +++ b/asmodee.py @@ -1570,7 +1570,7 @@ async def last(room,message): # Regarde la dernière fois que quelqu'un a écrit else: await msg(room,pers + " : Personne non reconnue",sender) -def statistiques(room,message): # Enregistrement des statistiques +async def statistiques(room,message): # Enregistrement des statistiques global modules try: rmod = modules[room.room_id, 'stats'] @@ -2059,7 +2059,7 @@ async def echo(room, message): async def callStats(room, message): match = botlib.MessageMatch(room, message, bot) if match.is_not_from_this_bot(): - statistiques(room, message) + await statistiques(room, message) def rte_token(): auth = HTTPBasicAuth(RTE_ID, RTE_SECRET)