From 63ab6127e3bf8a9ef53ff448afa6433579f76861 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 10 Feb 2024 10:44:00 +0200 Subject: [PATCH] fix wpd _award_timers_task --- files/helpers/cron.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/files/helpers/cron.py b/files/helpers/cron.py index 5e07bf317..ca89880f1 100644 --- a/files/helpers/cron.py +++ b/files/helpers/cron.py @@ -291,7 +291,10 @@ def _award_timers_task(): User.house: User.old_house, User.old_house: '', }) - _process_timer(User.earlylife, [169], "The earlylife award you received has expired!") + + if SITE_NAME != 'WPD': + _process_timer(User.earlylife, [169], "The earlylife award you received has expired!") + _process_timer(User.marsify, [170], "The marsify award you received has expired!") _process_timer(User.rainbow, [171], "The rainbow award you received has expired!") _process_timer(User.queen, [285], "The queen award you received has expired!")