暂时关闭图鉴激活功能

back_recharge
lvxinran 2021-08-04 10:51:42 +08:00
parent 29fa1eb079
commit 56f9773f7b
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
package com.ljsd.jieling.handler.pokemon;
import com.ljsd.jieling.exception.ErrorCode;
import com.ljsd.jieling.exception.ErrorCodeException;
import com.ljsd.jieling.handler.BaseHandler;
import com.ljsd.jieling.logic.hero.HeroLogic;
import com.ljsd.jieling.network.session.ISession;
@ -21,6 +23,7 @@ public class AllBookEnableHandler extends BaseHandler<HeroInfoProto.AllBookEnabl
@Override
public void processWithProto(ISession iSession, HeroInfoProto.AllBookEnableRequest proto) throws Exception {
HeroLogic.getInstance().AllBookEnable(iSession,proto.getBookId(),MessageTypeProto.MessageType.ALL_BOOK_ENABLE_REPONSE);
throw new ErrorCodeException(ErrorCode.SERVER_SELF_DEFINE);
// HeroLogic.getInstance().AllBookEnable(iSession,proto.getBookId(),MessageTypeProto.MessageType.ALL_BOOK_ENABLE_REPONSE);
}
}