赞 | 2 |
VIP | 0 |
好人卡 | 0 |
积分 | 3 |
经验 | 0 |
最后登录 | 2022-10-19 |
在线时间 | 28 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 293
- 在线时间
- 28 小时
- 注册时间
- 2020-9-8
- 帖子
- 4
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 睡_鸟 于 2020-11-12 21:44 编辑
Window_EquipItem.prototype.includes = function(item) {
// if (item === null) {
// return true;
// }
return (
this._actor &&
this._actor.canEquip(item) &&
item.etypeId === this.etypeId()
);
};
我在rmmz_windows 里找到了上面这段,注释了 item === null 这几行,现在用鼠标已经无法空选,但是选装备的时候按回车还是可以空选,如何解决。 |
|