赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 72 |
经验 | 0 |
最后登录 | 2024-11-11 |
在线时间 | 473 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7223
- 在线时间
- 473 小时
- 注册时间
- 2021-12-4
- 帖子
- 511
|
Window_EquipItem.prototype.includes = function(item) { // rpg_windows.js 第 2746 行
if (item === null) {
return true;
}
if (this._slotId < 0 || item.etypeId !== this._actor.equipSlots()[this._slotId]) {
return false;
}
if (this._actor.isEquipped(item)) return false; // 本行为新增内容,同名装备限穿一件
return this._actor.canEquip(item);
}; |
|