aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-16 18:17:21 -0700
committerFuwn <[email protected]>2025-09-16 18:17:21 -0700
commit0be7422a2392e7e4f0e76d78ee13046a29c1976c (patch)
tree90d6ecd57748a9d7fdff89c3cdb7c7459058b8a2 /src
parentfeat(roleplay_limiter): Add dynamic thresholds (diff)
downloadumabot-0be7422a2392e7e4f0e76d78ee13046a29c1976c.tar.xz
umabot-0be7422a2392e7e4f0e76d78ee13046a29c1976c.zip
feat(roleplay_limiter): Increase minimum post allowance
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 57ed3db..b828f3c 100644
--- a/src/umabot/rules/roleplay_limiter.py
+++ b/src/umabot/rules/roleplay_limiter.py
@@ -126,9 +126,9 @@ class RoleplayLimiter(Rule):
# Determine limit based on current roleplay count
if roleplay_posts >= threshold_3:
- user_limit = 1 # Minimum guaranteed
+ user_limit = 2 # Minimum guaranteed
elif roleplay_posts >= threshold_2:
- user_limit = 1 # High surge
+ user_limit = 2 # High surge
elif roleplay_posts >= threshold_1:
user_limit = 2 # Moderate surge
else: