修改次数不足提示语

This commit is contained in:
luying
2020-11-20 18:57:56 +08:00
parent f30d4858e4
commit a66106f4ea
2 changed files with 2 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ export async function checkHangUpSpdUpCnt(roleId: string, cnt: number, curTime:
hangUpSpdUpCnt = HANG_UP_CONSTS.MAX_SPD_UP_CNT;
}
if (cnt > hangUpSpdUpCnt) {
return {status: -1, resResult:resResult(STATUS.TOWER_HANG_UP_FAILED)}
return {status: -1, resResult:resResult(STATUS.TOWER_NOT_ENOUGH_HANG_UP_TIME)}
}
return {status: 0, data: {hangUpSpdUpCnt, gold, lastSpdUpTime}}
}