热榜点赞bug修改3

duhui 2022-12-12 17:29:23 +08:00
parent f59f042aa8
commit 795ea6810a
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public class HeroHotRank extends ForceRank {
String heroTid = next.getValue();
SCHero scHero = heroMap.get(Integer.parseInt(heroTid));
// 英雄不存在,品质不够,未开放
if (scHero == null || scHero.getNatural() < naturalLimit || scHero.getHide() == 0){
if (scHero == null || scHero.getNatural() < naturalLimit || scHero.getHide() == 1){
iterator.remove();
}
}