From eb59a6a1bc3f3aa3072b5493cf54a1d5d3e20126 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 4 Mar 2023 20:16:38 +0200 Subject: [PATCH] reduce automute from 60 mins to 10 mins --- files/routes/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/chat.py b/files/routes/chat.py index 8ff7b5b74..8f0db2d72 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -77,7 +77,7 @@ def speak(data, v): if SITE == 'rdrama.net': def shut_up(): self_only = True - muted_until = int(time.time() + 3600) + muted_until = int(time.time() + 600) muted[vname] = muted_until emit("online", [online, muted], broadcast=True)