summary refs log tree commit diff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index 0556ffd..8aad57f 100644
--- a/main.py
+++ b/main.py
@@ -162,7 +162,7 @@ async def handler(websocket):
             if not ratelimits[str(websocket.id)] <= time.time():

                 await websocket.send(util.error("ratelimited", None))

                 continue

-            ratelimits[str(websocket.id)] = time.time() + 0.35

+            ratelimits[str(websocket.id)] = time.time() + 0.15

             try:

                 r = json.loads(message)

             except: