From bff132a7fd016d1ff494294d8ad159d4b310a4d1 Mon Sep 17 00:00:00 2001 From: Darks Date: Tue, 12 Apr 2022 23:42:38 +0200 Subject: [PATCH] Reduced polling time for retreiving shoutmessages Added some aliases --- shoutbox.py | 2 +- users.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/shoutbox.py b/shoutbox.py index 5b25e87..7eb7403 100644 --- a/shoutbox.py +++ b/shoutbox.py @@ -110,7 +110,7 @@ class Shoutbox(object): except Exception as e: logging.error(f"Faillure in Shoutbox thread {e}") finally: - time.sleep(1) + time.sleep(3) class SBMessage(object): diff --git a/users.py b/users.py index 2dad199..ca7b569 100644 --- a/users.py +++ b/users.py @@ -7,4 +7,6 @@ USERS = [ ("FlamingKite", "FKite_"), ("Hackcell", "Alice"), ("Kikoodx", "KikooDX"), + ("Lephenixnoir", "Lephe"), + ("Potter360", "potter360"), ]