Merge branch 'master_test_gn_arena' of http://60.1.1.230/backend/jieling_server into master_test_gn_arena
commit
d7871504cf
|
@ -196,7 +196,13 @@ public class CrossServiceLogic {
|
|||
arenaOfHero.setJewelInfo(new HashSet<>(hero.getJewelInfo()));
|
||||
arenaOfHero.setCreateTime(hero.getCreateType());
|
||||
arenaOfHero.setChangeId(hero.getChangeId());
|
||||
Map<Integer, Long> attribute = HeroLogic.getInstance().calHeroNotBufferAttribute(user, hero, false, GlobalsDef.WORLD_TEAM_ARENA_DEFENSE);
|
||||
Map<Integer, Long> attribute = new HashMap<>();
|
||||
try {
|
||||
attribute = HeroLogic.getInstance().calHeroNotBufferAttribute(user, hero, false, GlobalsDef.WORLD_TEAM_ARENA_DEFENSE);
|
||||
}catch (Exception e){
|
||||
LOGGER.error("英雄熟悉报错:{}",e.getMessage());
|
||||
attribute = new HashMap<>();
|
||||
}
|
||||
arenaOfHero.setAttributeMap(attribute);
|
||||
return arenaOfHero;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue