diff --git a/modular/pinge.py b/modular/pinge.py index 2ce1768b..b9e46e77 100644 --- a/modular/pinge.py +++ b/modular/pinge.py @@ -23,7 +23,8 @@ async def _(c: nlx, m): em = Emojik() em.initialize() start = datetime.now() - await c.invoke(Ping(ping_id=0)) + ping_id = int(time.time() * 1000) + await c.invoke(Ping(ping_id=ping_id)) end = datetime.now() delta_ping = round((end - start).microseconds / 1000, 1) upnya = await get_time((time() - start_time))