From 5e87e53335140d458b6f8f42819a527e75f32dfe Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 7 Dec 2022 07:30:03 +0200 Subject: [PATCH] make poll limit 20 on rdrama and 30 on wpd --- files/helpers/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/helpers/const.py b/files/helpers/const.py index 60d97140d..17cc9a243 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -451,7 +451,7 @@ MODMAIL_ID = 2 POLL_THREAD = 0 POLL_BET_COINS = 200 -POLL_MAX_OPTIONS = 10 +POLL_MAX_OPTIONS = 20 WELCOME_MSG = f"Welcome to {SITE_NAME}!" LOTTERY_TICKET_COST = 12 @@ -621,7 +621,7 @@ elif SITE == 'watchpeopledie.tv': PERMS['POST_EDITING'] = 2 PERMS['ADMIN_ADD'] = 4 - POLL_MAX_OPTIONS = 0 + POLL_MAX_OPTIONS = 30 ERROR_TITLES.update({ 400: "Bad Request",