feat: 赛马游戏调整 - 允许自马下注 & 取消非冠军参赛奖励

- 移除下注时不能给自己马匹下注的限制
- 非冠军马主不再获得参赛奖励积分(PARTICIPANT_REWARD=0)
- 同步更新帮助文本、README文档和config默认值
This commit is contained in:
2026-04-05 21:25:10 +08:00
parent ff8cf611af
commit e773a7a1ef
3 changed files with 8 additions and 22 deletions

View File

@@ -16,7 +16,7 @@ class Config(BaseSettings):
ALLOWED_GROUPS: set[int] = Field(default_factory=set)
# 奖励配置
PARTICIPANT_REWARD: int = 50
PARTICIPANT_REWARD: int = 0
CHAMPION_REWARD: int = 200
MIN_BET: int = 10
MIN_ODDS: float = 1.2