From 7519f51ce7d1c569d5c3529d510df92d83f0888c Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 24 May 2023 13:46:31 +0300 Subject: [PATCH] remove the increased under siege time for messages and reports on WPD --- files/helpers/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index 68f9f8fc7..f5a7a2df1 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -471,7 +471,7 @@ def execute_under_siege(v:User, target:Optional[Union[Submission, Comment]], bod if v.shadowbanned: return if v.admin_level >= PERMS['SITE_BYPASS_UNDER_SIEGE_MODE']: return - if kind in {'message', 'report'}: + if kind in {'message', 'report'} and SITE == 'rdrama.net': threshold = 86400 else: threshold = UNDER_SIEGE_AGE_THRESHOLD