fix(fight): 修复空变更提交问题

This commit is contained in:
1
2025-11-10 04:17:27 +00:00
parent b157d6bc40
commit 3b84572455
2 changed files with 2 additions and 2 deletions

View File

@@ -25,11 +25,10 @@ func (p *Player) SendNoteReadyToFightInfo(b info.NoteReadyToFightInfo) {
p.SendPack(t1.Pack(&b)) //准备包由各自发,因为协议不一样
}
func (p *Player) SendFightEndInfo(b info.FightOverInfo) {
p.FightC = nil
t1 := NewTomeeHeader(2506, p.Info.UserID)
p.SendPack(t1.Pack(&b))
p.FightC = nil
}