赞 | 26 |
VIP | 0 |
好人卡 | 0 |
积分 | 29 |
经验 | 0 |
最后登录 | 2024-7-12 |
在线时间 | 446 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2866
- 在线时间
- 446 小时
- 注册时间
- 2016-9-26
- 帖子
- 1223
|
- Game_Battler.prototype.forceAction = function(skillId, targetIndex) {
- // this.clearActions();
- var action = new Game_Action(this, true);
- action.setSkill(skillId);
- if (targetIndex === -2) {
- action.setTarget(this._lastTargetIndex);
- } else if (targetIndex === -1) {
- action.decideRandomTarget();
- } else {
- action.setTarget(targetIndex);
- }
- this._actions.push(action);
- };
复制代码
我不确定这一注释一下是否会产生n个bug,这是我的一点猜测 |
|