抽奖内定期数问题

This commit is contained in:
sk 2024-10-26 17:22:23 +08:00
parent 342d2fde1f
commit 258fd69a9e
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ func (l *LotteryData) Done() {
continue continue
} }
t, _ := time.Parse(time.DateTime, v.GetTime()) t, _ := time.Parse(time.DateTime, v.GetTime())
if common.TsInSameDay(t.Unix(), l.StartTs) && v.GetNum() == int64(l.Num+1) { if common.TsInSameDay(t.Unix(), l.StartTs) && int(v.GetNum()) == LotteryMgrInst.GetIndex(l.Platform, l.CId) {
// 必中 // 必中
isMust = true isMust = true
tp = 1 tp = 1