diff --git a/gamesrv/thirteen/scenepolicy.go b/gamesrv/thirteen/scenepolicy.go index 5665f79..331c12f 100644 --- a/gamesrv/thirteen/scenepolicy.go +++ b/gamesrv/thirteen/scenepolicy.go @@ -1234,11 +1234,8 @@ func (this *StateHit) OnEnter(s *base.Scene) { } } } - if sceneEx.isCanAllHitPos != -1 { - hitNum++ - } - // 每个打枪加1秒,全垒打再加1秒 - sceneEx.hitTime += time.Second * (time.Duration(hitNum)) + // 每个打枪加2秒,全垒打再加2秒 + sceneEx.hitTime += time.Second * 2 * (time.Duration(hitNum)) sceneEx.ShowCards() } }