赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 73 |
经验 | 0 |
最后登录 | 2024-11-21 |
在线时间 | 475 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7279
- 在线时间
- 475 小时
- 注册时间
- 2021-12-4
- 帖子
- 514
|
没有%3和%4,理由如下:
Window_BattleLog.prototype.displayAction = function(subject, item) {
const numMethods = this._methods.length;
if (DataManager.isSkill(item)) {
this.displayItemMessage(item.message1, subject, item);
this.displayItemMessage(item.message2, subject, item);
} else {
this.displayItemMessage(TextManager.useItem, subject, item);
}
if (this._methods.length === numMethods) {
this.push("wait");
}
};
Window_BattleLog.prototype.displayItemMessage = function(fmt, subject, item) {
if (fmt) {
this.push("addText", fmt.format(subject.name(), item.name));
}
}; |
|