| 赞 | 36 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 96 |
| 经验 | 0 |
| 最后登录 | 2025-10-26 |
| 在线时间 | 462 小时 |
Lv4.逐梦者
- 梦石
- 2
- 星屑
- 7638
- 在线时间
- 462 小时
- 注册时间
- 2021-12-4
- 帖子
- 492

|
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);
}; |
|