aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-17 01:35:51 -0700
committerFuwn <[email protected]>2025-09-17 01:35:51 -0700
commit30b591f48fe1520c6397a947e757e74d9a66abf2 (patch)
tree1e892b0bbbcf85f665376e245df5e78a972d3778 /src
parentfeat(rules): Filter out removed posts from calculations (diff)
downloadumabot-30b591f48fe1520c6397a947e757e74d9a66abf2.tar.xz
umabot-30b591f48fe1520c6397a947e757e74d9a66abf2.zip
feat(roleplay_limiter): Decrease minimum roleplay allowance per interval
Diffstat (limited to 'src')
-rw-r--r--src/umabot/rules/roleplay_limiter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/umabot/rules/roleplay_limiter.py b/src/umabot/rules/roleplay_limiter.py
index aaad7f7..593285c 100644
--- a/src/umabot/rules/roleplay_limiter.py
+++ b/src/umabot/rules/roleplay_limiter.py
@@ -140,9 +140,9 @@ class RoleplayLimiter(Rule):
# Determine limit based on current roleplay count
if roleplay_posts >= threshold_3:
- user_limit = 2 # Minimum guaranteed
+ user_limit = 1 # Minimum guaranteed
elif roleplay_posts >= threshold_2:
- user_limit = 2 # High surge
+ user_limit = 1 # High surge
elif roleplay_posts >= threshold_1:
user_limit = 2 # Moderate surge
else: