fix: 将怪物经验奖励提升为5倍
修复了击杀怪物时获得的经验值过低的问题,将经验奖励从原本的1倍提升至5倍,以改善玩家升级体验。
This commit is contained in:
@@ -156,7 +156,7 @@ export class MissionComp extends CCComp {
|
|||||||
|
|
||||||
// 计算经验
|
// 计算经验
|
||||||
let exp = calculateMonsterExp(data.uuid, level);
|
let exp = calculateMonsterExp(data.uuid, level);
|
||||||
smc.addExp(exp);
|
smc.addExp(exp*5);
|
||||||
|
|
||||||
this.cal_gold_reward(data, type);
|
this.cal_gold_reward(data, type);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user