优化逻辑

This commit is contained in:
2025-03-13 19:18:10 +08:00
parent 7a07f39f1b
commit 4189705922
14 changed files with 185 additions and 37 deletions

View File

@@ -19,15 +19,15 @@ func switchPoint(ctx context.Context, point int) leaf.HandlerFunc {
switch point {
case 2: // 镇水塔点位
return play.OnlyVideo
case 5:
// 登龙云台(激光秀)
return play.LaserShow
case 10:
// 10号点位(发卡机)
return play.PushCard(ctx)
case 11:
// 11号点位(等待插卡)
return play.WaitCard(ctx)
case 5:
// 登龙云台(激光秀)
return play.LaserShow
default:
return play.Default
}