修复 比赛进行中还能下注的问题

This commit is contained in:
筱傑 2022-01-11 19:11:19 +08:00
parent 2e96da20b8
commit 9236f3bd21

View File

@ -193,6 +193,8 @@ object JHorseRacing : KotlinPlugin(
}
}
msg.startsWith("押马") -> {
// 如果比赛进行中则不允许下注
if (ranks[subject.id] != null) return@subscribeAlways
val pool = pools[subject.id] ?: return@subscribeAlways
if (pool.any { it.id == sender.id }) {
subject.sendMessage("你已经下过注辣")