Compare commits
No commits in common. "6923ed95f175f9f204cfa766d651bff2f85b8336" and "0143ebbe1214071b031392e6e91073a017986e51" have entirely different histories.
6923ed95f1
...
0143ebbe12
|
@ -518,7 +518,7 @@ func FortuneOxAndSaveLog(sceneEx *FortuneOxSceneData, playerEx *FortuneOxPlayerD
|
|||
json.Unmarshal(sp, &spinLock)
|
||||
respinStatus = spinLock.ReSpinStatus
|
||||
}
|
||||
if respinStatus != 0 && respinStatus != 1 {
|
||||
if respinStatus == 0 || respinStatus == 1 {
|
||||
data.TotalBet = 0
|
||||
}
|
||||
|
||||
|
|
|
@ -113,10 +113,6 @@ func (this *WelfareMgr) GetReliefFund(p *Player, isVideo bool) {
|
|||
mq.Write(log)
|
||||
logger.Logger.Tracef("NewReliefFundLogEx WriteLog snid: %v Coin:%v", p.SnId, pack.Coin)
|
||||
}
|
||||
if !p.IsRob {
|
||||
mq.Write(model.GenerateSystemFreeGive(p.SnId, p.Name, p.Platform, p.Channel,
|
||||
model.SystemFreeGive_GiveType_ReliefFund, model.SystemFreeGive_CoinType_Coin, coin))
|
||||
}
|
||||
}
|
||||
}
|
||||
logger.Logger.Tracef("GetReliefFund snid: %v pack: %v", p.SnId, pack)
|
||||
|
@ -1118,7 +1114,7 @@ func (this *WelfareMgr) BlindBoxInfo(p *Player, bid int32) {
|
|||
if cyc == 1 || blindBox.Cycle == model.WelfareOpen {
|
||||
p.WelfData.BlindBoxId = 0
|
||||
}
|
||||
} // == 1代表当日循环
|
||||
} // == 1代表当日循环
|
||||
if p.WelfData.BlindBoxId == 0 { // 未领取过发随机Date
|
||||
|
||||
idx := bid
|
||||
|
|
Loading…
Reference in New Issue