diff --git a/game-server/app/servers/battle/handler/normalBattleHandler.ts b/game-server/app/servers/battle/handler/normalBattleHandler.ts index c048b6710..974c9fe27 100644 --- a/game-server/app/servers/battle/handler/normalBattleHandler.ts +++ b/game-server/app/servers/battle/handler/normalBattleHandler.ts @@ -56,7 +56,9 @@ export class NormalBattleHandler { if (ap < warInfo.cost) { return resResult(STATUS.BATTLE_ACTION_POINT_LACK); } - + if(role.lv < warInfo.lvLimited) { + return resResult(STATUS.COM_BATTLE_LV_NOT_ENOUGH); + } // 前置关卡是否挑战过 let previousGk = warInfo.previousGk; if (previousGk) {