clear:线上版本,删除一些不需要的log

This commit is contained in:
luying
2022-06-06 11:37:26 +08:00
parent f82f74aa50
commit 17bcbe7804
12 changed files with 16 additions and 16 deletions

View File

@@ -85,7 +85,7 @@ export class HeroHandler {
if (oldLv + addLv > playerLv) addLv = playerLv - oldLv;
let nextExp = getHeroExpByLv(oldLv + addLv - 1);
console.log('nextExp', nextExp, oldLv + addLv - 1, oldExp)
// console.log('nextExp', nextExp, oldLv + addLv - 1, oldExp)
let needExp = nextExp - oldExp;
let newExp = oldExp;
@@ -293,7 +293,7 @@ export class HeroHandler {
if (newColorStarStage == oldColorStarStage) return resResult(STATUS.ROLE_MATERIAL_NOT_ENOUGH);
}
let consumes = check.getConsume();
console.log('&&&&&&&&7', JSON.stringify(consumes))
// console.log('&&&&&&&&7', JSON.stringify(consumes))
let result = await handleCost(roleId, sid, consumes, ITEM_CHANGE_REASON.HERO_WAKE_UP);
if (!result)
return resResult(STATUS.BATTLE_CONSUMES_NOT_ENOUGH);