上传共鸣水晶排序问题

This commit is contained in:
liwei 2023-07-19 18:18:38 +08:00
parent 8f84a12855
commit 3d50e2551a

View File

@ -83,7 +83,7 @@ func (this *Passon) HeroUpLv(session comm.IUserSession, heroid string, lv int32)
return heros[i].Lv > heros[j].Lv
} else {
conf_i, _ := this.ModuleTools.GetHeroConfig(heros[i].HeroID)
conf_j, _ := this.ModuleTools.GetHeroConfig(heros[i].HeroID)
conf_j, _ := this.ModuleTools.GetHeroConfig(heros[j].HeroID)
return conf_i.Color > conf_j.Color
}
})