diff --git a/utils/decorator/points_decorator.py b/utils/decorator/points_decorator.py index 0faa326..c221553 100644 --- a/utils/decorator/points_decorator.py +++ b/utils/decorator/points_decorator.py @@ -136,7 +136,7 @@ def plugin_points_cost(points: int, description: str = None, feature: Feature = user_points = points_db.get_user_points(sender, roomid) stats = points_db.get_user_points_stats(roomid) try: - points_auto = int(points * stats["total_points"] / 1000) + points_auto = int(points * stats["total_points"] / 3000) except Exception as e: logger.error(f"计算抵扣积分错误,使用默认积分:{e}") points_auto = points