fix: ROLL_MAX out of range

This commit is contained in:
Victor Westerlund 2024-11-09 20:55:09 +01:00
parent cff692cdd0
commit dcf582d9cf

View file

@ -6,7 +6,7 @@ from misskey.enum import NoteVisibility
from .User import User
from ..Enums import Intent
ROLL_MAX = 10000
ROLL_MAX = 1000
ROLL_MULTIPLIER = 0.1
class UserIntent(User):