master_ob2
PC-202302260912\Administrator 2023-08-07 13:04:54 +08:00
parent 3915f25665
commit 3e70166697
3 changed files with 196 additions and 191 deletions

View File

@ -1,4 +1,4 @@
{
"version":"5",
"tables":""
"version":"6",
"tables":"StoreConfig|RechargeCommodityConfig"
}

View File

@ -1,5 +1,6 @@
{
"version":"5",
"version":"6",
"classes":[
{"name":"HeroLogic.class","fullName":"com.ljsd.jieling.logic.hero.HeroLogic"}
]
}

View File

@ -5342,7 +5342,8 @@ public class HeroLogic {
* @param session
* @param judge truefalse
*/
public void addOrUpdateHongmeng(ISession session, boolean judge) throws Exception {
public void addOrUpdateHongmeng(ISession session, boolean judge){
try {
User user = UserManager.getUser(session.getUid());
// 英雄星级排行榜
SaveHeroForceEventHandler.heroStarHandle(user);
@ -5548,6 +5549,9 @@ public class HeroLogic {
MessageUtil.sendIndicationMessage(session, 1, MessageTypeProto.MessageType.HONGMENG_INFO_INDICATION_VALUE, hongmengInfoIndication.build(), true);
}
}
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**