remove "private chat" parameter

master
Aevann 2024-04-08 06:53:03 +02:00
parent ac96d0b049
commit 09cde74a38
2 changed files with 1 additions and 3 deletions

View File

@ -553,7 +553,6 @@ NOTIFICATION_SPAM_AGE_THRESHOLD = 0
COMMENT_SPAM_LENGTH_THRESHOLD = 0
DEFAULT_UNDER_SIEGE_THRESHOLDS = {
"private chat": 0,
"chat": 0,
"normal comment": 0,
"wall comment": 0,
@ -810,7 +809,6 @@ elif SITE in {'watchpeopledie.tv', 'marsey.world'}:
}
DEFAULT_UNDER_SIEGE_THRESHOLDS = {
"private chat": 1440,
"chat": 1440,
"normal comment": 10,
"wall comment": 1440,

View File

@ -129,7 +129,7 @@ def speak(data, v):
emit('speak', data)
return ''
execute_under_siege(v, None, text, "private chat")
execute_under_siege(v, None, text, "chat")
quotes = data['quotes']
if quotes: quotes = int(quotes)